bug0064.pp 146 B

123456789101112131415
  1. var
  2. i: byte;
  3. j: integer;
  4. c: char;
  5. Begin
  6. case i of
  7. Ord('x'): ;
  8. end;
  9. case j of
  10. Ord('x'): ;
  11. end;
  12. case c of
  13. Chr(112): ;
  14. end;
  15. end.