vxx2 / vlib / v / checker / tests / immutable_array_field_shift.out
6 lines · 6 sloc · 192 bytes · 86dfd3902fa851455e98b176a0abf5ff9dc6ab28
Raw
1vlib/v/checker/tests/immutable_array_field_shift.vv:14:4: error: field `a` of struct `Bbb` is immutable
2 12 | a: Aaa{}
3 13 | }
4 14 | b.a.i << 3
5 | ^
6 15 | }
7