sourcemod/sourcepawn/compiler/tests/fail-bad-arg-decls.sp

16 lines
79 B
SourcePawn
Raw Normal View History

2014-07-03 09:21:18 +02:00
stock A(int)
{
}
stock B(int[5] N)
{
}
stock C(int:N)
{
}
public main()
{
}