tw1858.pp 691 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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.
  16. {
  17. $Log$
  18. Revision 1.2 2002-09-07 15:40:57 peter
  19. * old logs removed and tabs fixed
  20. Revision 1.1 2002/03/08 20:18:28 carl
  21. * moved to correct directory
  22. Revision 1.2 2002/03/07 21:46:41 carl
  23. + fix unit name
  24. Revision 1.1 2002/03/07 21:40:56 carl
  25. * bug #1858 testing
  26. }