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