| 1 | vlib/v/checker/tests/immutable_field_postfix.vv:7:4: error: field `i` of struct `Aaa` is immutable |
| 2 | 5 | fn main() { |
| 3 | 6 | mut a := Aaa{} |
| 4 | 7 | a.i++ |
| 5 | | ^ |
| 6 | 8 | a.i-- |
| 7 | 9 | } |
| 8 | vlib/v/checker/tests/immutable_field_postfix.vv:8:4: error: field `i` of struct `Aaa` is immutable |
| 9 | 6 | mut a := Aaa{} |
| 10 | 7 | a.i++ |
| 11 | 8 | a.i-- |
| 12 | | ^ |
| 13 | 9 | } |
| 14 |