xref: /llvm-project/lldb/test/API/commands/expression/macros/macro1.h (revision 99451b4453688a94c6014cac233d371ab4cc342d)
1 
2 #include "macro2.h"
3 
4 #define ONE 1
5 #define TWO 2
6 #define THREE 3
7 #define FOUR 4
8 
9 class Simple
10 {
11 public:
12     int
Method()13     Method()
14     {
15         return ONE + TWO;
16     };
17 };
18