v2 / vlib / v / parser / tests / struct_module_section.out
12 lines · 12 sloc · 352 bytes · df39e7001cd03cde5116c6e7032742207e344acc
Raw
1vlib/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++
8vlib/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