v/vlib/v/checker/tests/immutable_field_postfix.out

14 lines
396 B
Plaintext
Raw Normal View History

vlib/v/checker/tests/immutable_field_postfix.vv:7:4: error: field `i` of struct `Aaa` is immutable
5 | fn main() {
2020-05-27 18:12:34 +02:00
6 | mut a := Aaa{}
7 | a.i++
| ^
8 | a.i--
9 | }
vlib/v/checker/tests/immutable_field_postfix.vv:8:4: error: field `i` of struct `Aaa` is immutable
2020-05-27 18:12:34 +02:00
6 | mut a := Aaa{}
7 | a.i++
8 | a.i--
| ^
9 | }