mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 17:28:14 +02:00
19 lines
238 B
ObjectPascal
19 lines
238 B
ObjectPascal
{ %fail}
|
|
{ %norun}
|
|
program terecs2;
|
|
|
|
{$mode delphi}
|
|
type
|
|
TFoo = record
|
|
private
|
|
F1: Integer;
|
|
F2: Byte;
|
|
public
|
|
F3: Integer;
|
|
F4: Byte;
|
|
published // record can't have published fields
|
|
F5: String;
|
|
end;
|
|
|
|
begin
|
|
end. |