Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
vxx2
/
vlib
/
v
/
checker
/
tests
/
for_comptime_enum_fields_err.out
7
lines
·
7
sloc
·
262 bytes
·
55cac8841a265c57b21b025b7673c3a58f4c09dd
Raw
1
vlib/v/checker/tests/for_comptime_enum_fields_err.vv:6:11: error: iterating over .fields is supported only for structs and interfaces, and Test is neither
2
4 | }
3
5 |
4
6 | $for i in Test.fields {
5
| ~~~~
6
7 | println(i)
7
8 | }
8