0170-line.c - scc - simple c99 compiler
(HTM) git clone git://git.simple-cc.org/scc
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Submodules
(DIR) README
(DIR) 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 }