100-macro-with-colon.c revision 01e04c3f
1#define one 1
2#define two 2
3
4switch (1) {
5   case one + two:
6      break;
7}
8