1#include "macro1.h"
2
3#define MACRO_1 100
4#define MACRO_2 200
5
6int
7main ()
8{
9 int a = ONE + TWO; // Break here
10
11 #undef MACRO_2
12 #undef FOUR
13
14 return Simple().Method();
15}
16

source code of lldb/test/API/commands/expression/macros/main.cpp