mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
7 lines
226 B
Plaintext
7 lines
226 B
Plaintext
vlib/v/checker/tests/go_mut_arg.vv:14:16: error: function in `go` statement cannot contain mutable non-reference arguments
|
|
12 | a: 0
|
|
13 | }
|
|
14 | go change(mut x)
|
|
| ^
|
|
15 | }
|