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