1 2 3 4 5 6
vlib/v/checker/tests/immutable_field.vv:8:4: error: field `i1` of struct `Aaa` is immutable 6 | fn main() { 7 | a := Aaa{1} 8 | a.i1 = 2 | ~~ 9 | }