sourcemod/sourcepawn/compiler/tests/fail-callback-returns-array.sp

17 lines
180 B
SourcePawn
Raw Normal View History

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