fpc/tests/webtbs/tw1409.pp
2001-04-16 11:03:54 +00:00

16 lines
184 B
ObjectPascal

{$MODE objfpc}
type
TPoint = record
x, y: Integer;
end;
procedure Test(const Args: array of TPoint);
begin
end;
const
p1: TPoint = (x: 10; y: 10);
begin
Test([p1]);
end.