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 / COMMENT.TST < prev    next >
Text File  |  1989-06-22  |  414b  |  28 lines

  1. /*
  2.     June 22, 1989:
  3.  
  4.     Make sure the following construction works.
  5.     Obviously, nested comments must not be enabled.
  6. */
  7.  
  8. /*    /*   */
  9.  
  10. #define A  a // I wonder what will happen
  11.  
  12. main()
  13. {
  14.  
  15.     /* aaa   /*   xxx
  16.     */
  17.  
  18. // This is a single-line comment, as used in Microsoft C v5.1
  19.  
  20.     /* // single-line comments are not recognized in regular comments. */
  21.  
  22.     a = 2;
  23.  
  24.     A = 5;
  25. }
  26.  
  27. /* Another comment */
  28.