v/vlib/v/checker/tests/immutable_array_struct_shif...

7 lines
217 B
Plaintext

vlib/v/checker/tests/immutable_array_struct_shift.vv:8:2: error: `a` is immutable, declare it with `mut` to make it mutable
6 | fn main() {
7 | a := []Aaa{}
8 | a[0].i << 3
| ^
9 | }