fpc/tests/tbs/tb0057.pp
2002-09-07 15:40:30 +00:00

19 lines
246 B
ObjectPascal

{ Old file: tbs0064.pp }
{ shows other types of problems with case statements OK 0.99.1 (FK) }
var
i: byte;
j: integer;
c: char;
Begin
case i of
Ord('x'): ;
end;
case j of
Ord('x'): ;
end;
case c of
Chr(112): ;
end;
end.