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

14 lines
375 B
Plaintext

vlib/v/checker/tests/immutable_field_postfix.v:7:4: error: field `i` of struct `A` is immutable
5| fn main() {
6| mut a := A{}
7| a.i++
^
8| a.i--
9| }
vlib/v/checker/tests/immutable_field_postfix.v:8:4: error: field `i` of struct `A` is immutable
6| mut a := A{}
7| a.i++
8| a.i--
^
9| }