mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
temporary fix for issue #2897
This commit is contained in:
committed by
Alexander Medvednikov
parent
dbaa37ea46
commit
e63300e286
18
vlib/compiler/tests/multiret_with_ptrtype.v
Normal file
18
vlib/compiler/tests/multiret_with_ptrtype.v
Normal file
@@ -0,0 +1,18 @@
|
||||
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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user