sourcemod/sourcepawn/compiler/tests/ok-inline-methods.sp

14 lines
184 B
SourcePawn
Raw Normal View History

methodmap Crab {
public Crab(int n) {
return Crab:n;
}
public int Value() {
return _:this;
}
};
public main() {
new Crab:crab = Crab(5);
return crab.Value();
}