0197-cppcomment.c - scc - simple c99 compiler
HTML git clone git://git.simple-cc.org/scc
DIR Log
DIR Files
DIR Refs
DIR Submodules
DIR README
DIR LICENSE
---
0197-cppcomment.c (132B)
---
1 #define TEST1 1 // comment
2 #define TEST2 2
3
4 int
5 main(void)
6 {
7 if (TEST1 != 1)
8 return 1;
9 if (TEST2 != 2)
10 return 2;
11 return 0;
12 }