sourcemod/sourcepawn/compiler/tests/fail-sizeof-default-arg.sp

10 lines
109 B
SourcePawn
Raw Normal View History

stock void crab(int[] eggs, int numEggs = sizeof(eggs))
{
}
public main()
{
int eggs[12];
crab(eggs);
}