v2 / vlib / v / checker / tests / assign_enum_at_comptime.out
7 lines · 7 sloc · 257 bytes · 915ff40926b53200aa2af6f34d4f308906d95cec
Raw
1vlib/v/checker/tests/assign_enum_at_comptime.vv:13:21: error: enums can only be assigned `int` values
2 11 |
3 12 | $for field in TestStruct.fields {
4 13 | t.$(field.name) = '1'
5 | ~~~
6 14 | }
7 15 | }
8