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

15 lines
78 B
SourcePawn

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