summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/tbs/tb0516.pp
blob: 559580fb1b2dc053b11a0a3c97e8709f2dd7a09c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{$mode delphi}

type
  ta = (ea,eb);
  tb = (e1,e2);
  tr = record
    case a: byte of
      -1,'c'..ea,e2..-5: (l: longint);
      'b'..eb,-1,-1,-1..-38,-100..e2: (c: cardinal);
  end;

begin
end.