sourcemod/sourcepawn/compiler/tests/disabled/fail-obj-to-varargs.sp

15 lines
78 B
SourcePawn

class X
{
};
f(...)
{
return 3
}
public main()
{
new X:x;
return f(x);
}