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

15 lines
80 B
SourcePawn

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