test106
auto test106 =
q{--- test106
// Test structs passed as pointer on the stack (win64 abi) (name parameter)
// big struct on stack (sysv64)
void fun(i32, i32, i32, u8, u8, u8, u8[] name, bool){
fun2(name);
}
@extern(module, "host")
void fun2(u8[]);
void run()
{
fun(50, 50, 32, 0, 255, 0, "Player", true);
}
};
tests passing
functionsvariables