tw1858.pp 394 B

12345678910111213141516171819202122
  1. { %FAIL }
  2. { Source provided for Free Pascal Bug Report 1858 }
  3. { Submitted by "Mattias Gaertner" on 2002-03-07 }
  4. { e-mail: [email protected] }
  5. { expanded for more testing... }
  6. { Should be tested on systems which detect reads of nil pointers }
  7. unit tw1858;
  8. interface
  9. const
  10. a : char = '#';
  11. b = a + 'panic';
  12. c : set of byte = [0,1,2,3];
  13. d = c + [4,5,6];
  14. implementation
  15. end.