sourcemod/sourcepawn/compiler/tests/fail-methodmap-missing-method.sp

14 lines
176 B
SourcePawn
Raw Normal View History

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