brintos

brintos / llvm-project-archived public Read only

0
0
Text · 174 B · f2c2c10 Raw
16 lines · cpp
1#include "macro1.h"2 3#define MACRO_1 1004#define MACRO_2 2005 6int7main ()8{9  int a = ONE + TWO; // Break here10 11  #undef MACRO_212  #undef FOUR13 14  return Simple().Method();15}16