home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_300 / 355_03 / slk3.exe / TEST / TST / INCLUDE.PP < prev    next >
Text File  |  1989-02-17  |  339b  |  19 lines

  1. /*
  2.     This tests for the following bugs:
  3.  
  4.     1.  PP directives not recognized following a "file not found."
  5.     2   PP directives not recognized as the very first line of a file.
  6. */
  7. #include "include2.pp"
  8.  
  9. bad_include()
  10. {
  11. #include "unknown.xxx"
  12. #define A 1
  13. #include <unknown.yyy>
  14. #define B 2
  15. #include unknown.zzz
  16. #define C 3
  17.  
  18. }
  19.