xref: /llvm-project/lldb/test/API/commands/expression/macros/main.cpp (revision 99451b4453688a94c6014cac233d371ab4cc342d)
1 #include "macro1.h"
2 
3 #define MACRO_1 100
4 #define MACRO_2 200
5 
6 int
main()7 main ()
8 {
9   int a = ONE + TWO; // Break here
10 
11   #undef MACRO_2
12   #undef FOUR
13 
14   return Simple().Method();
15 }
16