sourcemod/sourcepawn/compiler/tests/fail-relabel-int-to-obj.sp
2014-06-24 23:37:14 -07:00

15 lines
78 B
SourcePawn

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