vxx2 / vlib / v / checker / tests / if_smartcast_mutation_err.out
7 lines · 7 sloc · 248 bytes · 4f7530d011c3a6f9dbce269bce663b109393a1e4
Raw
1vlib/v/checker/tests/if_smartcast_mutation_err.vv:6:3: error: cannot mutate `a` in a non-mut smartcast, use `if mut a ...`
2 4 | a := SmartcastValue(1)
3 5 | if a is int {
4 6 | a = 3
5 | ^
6 7 | }
7 8 | }
8