fpc/tests/webtbs/tw25703.pp
Jonas Maebe 24f4adf657 * set the rangedef of open arrays to ptrsinttype (instead of s32inttype),
so that it's the same as the def returned by the low/high nodes
    (mantis #25703)

git-svn-id: trunk@27970 -
2014-06-15 15:26:47 +00:00

19 lines
212 B
ObjectPascal

{ %norun }
{ %opt=-CO -Seh }
{$MODE OBJFPC}
type
TNode = class end;
procedure Test(const Arg: array of TNode);
var
Item: TNode;
begin
for Item in Arg do ; // Warning here
end;
begin
test([]);
end.