llvm-project/lldb/packages/Python/lldbsuite/test/expression_command/macros/macro1.h

18 lines
168 B
C++

#include "macro2.h"
#define ONE 1
#define TWO 2
#define THREE 3
#define FOUR 4
class Simple
{
public:
int
Method()
{
return ONE + TWO;
};
};