sourcemod/sourcepawn/compiler/tests/fail-object-keyword-as-name.sp

6 lines
194 B
SourcePawn

public Action:SomeEvent( Handle:event, const String:name[], bool:dontBroadcast)
{
// error 143: new-style declarations should not have "new"
new object = GetEventInt(event, "object");
}