sourcemod/sourcepawn/compiler/tests/fail-call-static-via-instance.sp

14 lines
135 B
SourcePawn
Raw Normal View History

native printnum(t);
methodmap X
{
public static int GetThing() {
return 10;
}
}
public main() {
X x;
printnum(x.GetThing());
}