1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/compiler/tests/multiret_with_ptrtype_test.v
2019-11-28 09:46:52 +03:00

19 lines
314 B
V

fn multi_voidptr_ret() (voidptr, bool) {
return voidptr(0), true
}
fn multi_byteptr_ret() (byteptr, bool) {
return byteptr(0), true
}
fn test_multi_ptrtype_ret() {
a, b := multi_voidptr_ret()
assert a == voidptr(0)
assert b == true
c, d := multi_byteptr_ret()
assert c == byteptr(0)
assert d == true
}