vxx2 / vlib / v / checker / tests / non_lvalue_as_voidptr.vv
5 lines · 4 sloc · 82 bytes · eb65ad078d86208fbf4befb9a52c9f630ea9aec6
Raw
1fn add(a voidptr, b voidptr) int {
2 return int(a) + int(b)
3}
4
5println(add(5, 10))
6