vxx2 / vlib / v / checker / tests / immutable_var_postfix.out
13 lines · 13 sloc · 404 bytes · 86dfd3902fa851455e98b176a0abf5ff9dc6ab28
Raw
1vlib/v/checker/tests/immutable_var_postfix.vv:3:2: error: `a` is immutable, declare it with `mut` to make it mutable
2 1 | fn main() {
3 2 | a := 1
4 3 | a++
5 | ^
6 4 | a--
7 5 | }
8vlib/v/checker/tests/immutable_var_postfix.vv:4:2: error: `a` is immutable, declare it with `mut` to make it mutable
9 2 | a := 1
10 3 | a++
11 4 | a--
12 | ^
13 5 | }
14