vxx2 / vlib / v / checker / tests / struct_pub_field.out
12 lines · 12 sloc · 364 bytes · 1512486d01d4205e7b67ebd679238fa45cd348af
Raw
1vlib/v/checker/tests/struct_pub_field.vv:9:4: error: field `i` of struct `Foo` is immutable
2 7 | i: 1
3 8 | }
4 9 | a.i = 2
5 | ^
6 10 | }
7vlib/v/checker/tests/struct_pub_field.vv:9:2: error: `a` is immutable, declare it with `mut` to make it mutable
8 7 | i: 1
9 8 | }
10 9 | a.i = 2
11 | ^
12 10 | }
13