git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@8705 626c5289-ae23-0410-ae9c-e8d60b6d4f22
9 lines
185 B
Raku
9 lines
185 B
Raku
use voidtest;
|
|
|
|
if (1) {
|
|
$f = new voidtest::Foo();
|
|
$v1 = voidtest::vfunc1($f);
|
|
$v2 = voidtest::vfunc2($f);
|
|
$v3 = voidtest::vfunc3($v1);
|
|
$v4 = voidtest::vfunc4($f);
|
|
}
|