mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:38:14 +02:00

so that it's the same as the def returned by the low/high nodes (mantis #25703) git-svn-id: trunk@27970 -
19 lines
212 B
ObjectPascal
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.
|
|
|