1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/parser/tests/comptime_unknown_meta_kind_err.out

8 lines
300 B
Plaintext

vlib/v/parser/tests/comptime_unknown_meta_kind_err.vv:7:20: error: unknown kind `abcde`, available are: `methods`, `fields`, `values`, or `attributes`
5 |
6 | fn test_main() {
7 | $for item in Test.abcde {
| ~~~~~
8 | dump(item)
9 | }