tb0057.pp 245 B

123456789101112131415161718
  1. { Old file: tbs0064.pp }
  2. { shows other types of problems with case statements OK 0.99.1 (FK) }
  3. var
  4. i: byte;
  5. j: integer;
  6. c: char;
  7. Begin
  8. case i of
  9. Ord('x'): ;
  10. end;
  11. case j of
  12. Ord('x'): ;
  13. end;
  14. case c of
  15. Chr(112): ;
  16. end;
  17. end.