sourcemod/sourcepawn/compiler/tests/ok-new-decl-args.sp
David Anderson 153bbba641 WIP.
2014-07-02 23:01:00 -07:00

35 lines
199 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)
{
}
public main()
{
new x[10]
A(1)
B(x)
C(x)
D(E1:5)
E(E2:5)
}