Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
vxx2
/
vlib
/
v
/
checker
/
tests
/
non_lvalue_as_voidptr.vv
5
lines
·
4
sloc
·
82 bytes
·
eb65ad078d86208fbf4befb9a52c9f630ea9aec6
Raw
1
fn add(a voidptr, b voidptr) int {
2
return int(a) + int(b)
3
}
4
5
println(add(5, 10))
6