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

15 lines
78 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);
}