sourcemod/sourcepawn/compiler/tests/fail-obj-to-none.sp

15 lines
76 B
SourcePawn
Raw Normal View History

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