vxx2 / vlib / v / checker / tests / immutable_array_var.out
6 lines · 6 sloc · 202 bytes · 86dfd3902fa851455e98b176a0abf5ff9dc6ab28
Raw
1vlib/v/checker/tests/immutable_array_var.vv:3:2: error: `a` is immutable, declare it with `mut` to make it mutable
2 1 | fn main() {
3 2 | a := [1, 2]
4 3 | a << 3
5 | ^
6 4 | }
7