fpc/tests/webtbs/tw30007.pp
Jonas Maebe 130d9fee91 * don't take the address of element 0 of a dynamic array in
tcallparanode.copy_value_by_ref_para() if the array is empty
    (mantis #30007)

git-svn-id: trunk@33595 -
2016-05-01 12:35:09 +00:00

17 lines
270 B
ObjectPascal

program project6;
{$r+}
function LinesToText(Lines: array of String): String;
begin
end;
var
SomeLines: array of String;
begin
SetLength(SomeLines,1);
LinesToText(SomeLines); // <-- ok
SetLength(SomeLines,0);
LinesToText(SomeLines); // <-- range error
end.