scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

0170-line.c (143B)


      1 #undef  line
      2 #define line 1000
      3 
      4 #line line
      5 #if 1000 != __LINE__
      6 	#error "  # line line" not work as expected
      7 #endif
      8 
      9 int
     10 main()
     11 {
     12 	return 0;
     13 }