v/vlib/v/checker/tests/struct_pub_field.out

7 lines
170 B
Plaintext

vlib/v/checker/tests/struct_pub_field.v:9:4: error: field `i` of struct `A` is immutable
7 | i: 1
8 | }
9 | a.i = 2
| ^
10 | }