fpc/bugs/bug0064.pp
1998-03-25 11:26:49 +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.