v2 / vlib / v / checker / tests / comptime_selector_assign.out
14 lines · 14 sloc · 635 bytes · 915ff40926b53200aa2af6f34d4f308906d95cec
Raw
1vlib/v/checker/tests/comptime_selector_assign.vv:18:24: error: mismatched types: check field type with $if to avoid this problem
2 16 | typ.$(field.name) = 2
3 17 | }
4 18 | typ.$(field.name) = 3
5 | ^
6 19 | }
7 20 | }
8vlib/v/checker/tests/comptime_selector_assign.vv:18:24: error: cannot assign to `typ.$(field.name)`: expected `string`, not `int literal`
9 16 | typ.$(field.name) = 2
10 17 | }
11 18 | typ.$(field.name) = 3
12 | ^
13 19 | }
14 20 | }
15