Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
v2
/
vlib
/
v
/
checker
/
tests
/
voidptr_arg_err.out
7
lines
·
7
sloc
·
237 bytes
·
521c8156bc461b831c3a2da3eaddef41f4ef1b9e
Raw
1
vlib/v/checker/tests/voidptr_arg_err.vv:3:15: error: cannot use `voidptr` as `[]i32` in argument 1 to `test`
2
1 | fn test_main() {
3
2 | c := voidptr(10)
4
3 | println(test(c))
5
| ^
6
4 | }
7
5 |
8