v/vlib/v/checker/tests/immutable_field.out

7 lines
184 B
Plaintext
Raw Normal View History

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