vxx2 / vlib / v / checker / tests / for_comptime_struct_values_err.out
7 lines · 7 sloc · 268 bytes · 55cac8841a265c57b21b025b7673c3a58f4c09dd
Raw
1vlib/v/checker/tests/for_comptime_struct_values_err.vv:5:11: error: iterating over .values is supported only for enums, and Foo is not an enum
2 3 | fn (_ Foo) hello() {}
3 4 |
4 5 | $for i in Foo.values {
5 | ~~~
6 6 | println(i)
7 7 | }
8