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

15 lines
78 B
SourcePawn

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