mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 17:28:14 +02:00
18 lines
222 B
ObjectPascal
18 lines
222 B
ObjectPascal
{ %norun }
|
|
|
|
{$mode objfpc}
|
|
type
|
|
TMyObject = class
|
|
public
|
|
constructor Create(ar: array of TMyObject);
|
|
end;
|
|
|
|
constructor TMyObject.Create(ar: array of TMyObject);
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
TMyObject.Create([nil]);
|
|
end.
|
|
|