mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 10:48:30 +02:00
14 lines
146 B
ObjectPascal
14 lines
146 B
ObjectPascal
unit ub0308;
|
|
|
|
interface
|
|
|
|
type
|
|
tr = record
|
|
case a : (x,y,z) of
|
|
x : (l : longint);
|
|
end;
|
|
|
|
implementation
|
|
|
|
end.
|