sourcemod/sourcepawn/compiler/tests/fail-callback-returns-array.sp
2015-03-06 10:51:46 -08:00

17 lines
180 B
SourcePawn

String:MyFunction()
{
new String:egg[10] = "egg";
return egg;
}
public crab()
{
new String:egg[10];
egg = MyFunction();
}
public Function:main()
{
return MyFunction;
}