Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
checker
/
tests
/
fn_call_arg_mismatch_err_a.out
7
lines
·
7
sloc
·
247 bytes
·
ac90a2b53d5bd6b33c2d033e252e5fba1b1307e7
Raw
1
vlib/v/checker/tests/fn_call_arg_mismatch_err_a.vv:7:9: error: cannot use `&[]int` as `[]int` in argument 1 to `abc`
2
5 | fn main() {
3
6 | a := [1, 2, 3]
4
7 | go abc(&a)
5
| ~~
6
8 | println('done')
7
9 | }
8