v2 / vlib / v / checker / tests / go_mut_arg.out
6 lines · 6 sloc · 234 bytes · 2d8f160ef13dd0912f319fcc07106ba3cbc2099b
Raw
1vlib/v/checker/tests/go_mut_arg.vv:14:19: error: function in `spawn` statement cannot contain mutable non-reference arguments
2 12 | a: 0
3 13 | }
4 14 | spawn change(mut x)
5 | ^
6 15 | }
7