mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 20:47:53 +02:00
15 lines
163 B
ObjectPascal
15 lines
163 B
ObjectPascal
{$mode delphi}
|
|
|
|
type
|
|
ta = (ea,eb);
|
|
tb = (e1,e2);
|
|
tr = record
|
|
case a: byte of
|
|
0..5: (l: longint);
|
|
100..20: (c: cardinal);
|
|
end;
|
|
|
|
begin
|
|
end.
|
|
|