sourcemod/sourcepawn/compiler/tests/ok-inheritance-null.sp
2014-07-17 21:18:49 -07:00

20 lines
185 B
SourcePawn

enum Handle:
{
}
methodmap Handle __nullable__
{
}
methodmap StringMap < Handle
{
}
native Log(const char[] fmt, any:...)
public main()
{
StringMap f
Log("hello %d", f != null)
}