mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-05-31 20:02:40 +02:00
16 lines
184 B
ObjectPascal
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.
|