mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 09:47:56 +02:00
14 lines
148 B
Plaintext
14 lines
148 B
Plaintext
unit ts010009;
|
|
|
|
interface
|
|
|
|
type
|
|
tr = record
|
|
case a : (x,y,z) of
|
|
x : (l : longint);
|
|
end;
|
|
|
|
implementation
|
|
|
|
end.
|