mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-01 10:02:33 +02:00
14 lines
134 B
ObjectPascal
14 lines
134 B
ObjectPascal
unit th010018;
|
|
|
|
interface
|
|
type
|
|
rec=object
|
|
i : longint;
|
|
nrs : (one,two,three);
|
|
end;
|
|
var
|
|
brec : rec;
|
|
|
|
implementation
|
|
|
|
end. |