| 1 | vlib/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 | } |
| 7 | vlib/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 |