aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/old/vlib/v/checker/tests/immutable_field.out
blob: 05b62143f52260ba97ed76f57b06c8909849cced (plain)
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 | }