home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / MAGAZINE / MISC / CNEWS004.ZIP / MSCBUGS.ARC / MSC5BUG2.C < prev    next >
Encoding:
C/C++ Source or Header  |  1987-12-15  |  348 b   |  13 lines

  1. /* /Zi SWITCH GENERATES A WARNING & CODEVIEW DIES TRACING main IN ASM */
  2. #include <assert.h>
  3. #include <process.h>
  4. #include <stdio.h>
  5. void main( ac, av )
  6. int ac; char **av;
  7. { assert( av[ac] == NULL ); }    /* ok if not all on one line */
  8. #if 0
  9. msc5bug2.c(7) : warning C4073: scoping too deep, deepest scoping merged when debugging
  10. #endif
  11.  
  12.  
  13.