mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 21:28:14 +02:00
28 lines
265 B
ObjectPascal
28 lines
265 B
ObjectPascal
{ %FAIL }
|
|
{ %NORUN }
|
|
program terecs17a;
|
|
|
|
{$mode delphi}
|
|
|
|
type
|
|
|
|
{ TRec }
|
|
|
|
TRec = record
|
|
X: Integer;
|
|
constructor Create(I: integer = 0);
|
|
end;
|
|
|
|
{ TRec }
|
|
|
|
constructor TRec.Create(I: integer = 0);
|
|
begin
|
|
|
|
end;
|
|
|
|
var
|
|
R: TRec;
|
|
begin
|
|
R := TRec.Create;
|
|
end.
|