0160-cpp_if.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
---
0160-cpp_if.c (210B)
---
1 #if 0 != (0 && (0/0))
2 #error 0 != (0 && (0/0))
3 #endif
4
5 #if 1 != (-1 || (0/0))
6 #error 1 != (-1 || (0/0))
7 #endif
8
9 #if 3 != (-1 ? 3 : (0/0))
10 #error 3 != (-1 ? 3 : (0/0))
11 #endif
12
13 int
14 main()
15 {
16 return 0;
17 }