fpc/tests/tbs0064.pp
1998-12-02 13:05:01 +00:00

15 lines
146 B
ObjectPascal

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.