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

15 lines
78 B
SourcePawn
Raw Normal View History

2014-06-25 08:37:14 +02:00
class X
{
};
f(X:x)
{
return 3
}
public main()
{
new x;
return f(X:x);
}