1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/parser/tests/struct_module_section.out

13 lines
352 B
Plaintext

vlib/v/parser/tests/struct_module_section.vv:16:3: error: field `i` of struct `S1` is immutable
14 |
15 | mut s := S1{}
16 | s.i++
| ^
17 | mut s2 := S2{}
18 | s2.j++
vlib/v/parser/tests/struct_module_section.vv:18:4: error: field `j` of struct `S2` is immutable
16 | s.i++
17 | mut s2 := S2{}
18 | s2.j++
| ^