tw3126.pp 230 B

1234567891011121314
  1. { %fail }
  2. { Source provided for Free Pascal Bug Report 3126 }
  3. { Submitted by "Christian Iversen" on 2004-05-30 }
  4. { e-mail: [email protected] }
  5. Program test;
  6. Var
  7. P : PChar;
  8. Begin
  9. Case P^ Of
  10. 'A'-'Z' : ;
  11. End;
  12. End.