fpc/tests/tbs/tb0516.pp
2021-10-31 21:13:35 +01:00

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.