tb0056.pp 271 B

12345678910111213141516
  1. { Old file: tbs0063.pp }
  2. { shows problem with ranges in sets for variables OK 0.99.7 (PFV) }
  3. { may also crash/do weird error messages with the compiler }
  4. var
  5. min: char;
  6. max: char;
  7. i: char;
  8. begin
  9. min:='c';
  10. max:='z';
  11. if i in [min..max] then
  12. Begin
  13. end;
  14. end.