| 1 | vlib/v/parser/tests/struct_module_section.vv:16:3: error: field `i` of struct `S1` is immutable |
| 2 | 14 | |
| 3 | 15 | mut s := S1{} |
| 4 | 16 | s.i++ |
| 5 | | ^ |
| 6 | 17 | mut s2 := S2{} |
| 7 | 18 | s2.j++ |
| 8 | vlib/v/parser/tests/struct_module_section.vv:18:4: error: field `j` of struct `S2` is immutable |
| 9 | 16 | s.i++ |
| 10 | 17 | mut s2 := S2{} |
| 11 | 18 | s2.j++ |
| 12 | | ^ |
| 13 |