sourcemod/sourcepawn/compiler/tests/ok-new-decl-args.sp
David Anderson ed4cca0225 Bug fixes.
2014-07-03 00:14:12 -07:00

39 lines
230 B
SourcePawn

stock A(int n)
{
}
stock B(int n[])
{
}
stock C(int[] n)
{
}
enum E1: {
}
enum E2 {
}
stock D(E1 t)
{
}
stock E(E2 t)
{
}
stock F(int n[10]) {
}
public main()
{
new x[10]
A(1)
B(x)
C(x)
D(E1:5)
E(E2:5)
F(x)
}