mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-10 03:08:43 +02:00
15 lines
133 B
ObjectPascal
15 lines
133 B
ObjectPascal
unit ub0313;
|
|
|
|
interface
|
|
type
|
|
rec=object
|
|
i : longint;
|
|
nrs : (one,two,three);
|
|
end;
|
|
var
|
|
brec : rec;
|
|
|
|
implementation
|
|
|
|
end.
|