sourcemod/sourcepawn/compiler/tests/fail-methodmap-missing-method.sp
2014-07-12 10:28:29 -07:00

14 lines
176 B
SourcePawn

methodmap Duck
{
public void MyFunc()
{
// this will compile fine until this function is used elsewhere in code
ThisFuncDoesntExist();
}
};
public OnPluginStart()
{
}