bolt/deps/llvm-18.1.8/lldb/test/API/commands/expression/macros/main.cpp

16 lines
174 B
C++
Raw Normal View History

2025-02-14 19:21:04 +01:00
#include "macro1.h"
#define MACRO_1 100
#define MACRO_2 200
int
main ()
{
int a = ONE + TWO; // Break here
#undef MACRO_2
#undef FOUR
return Simple().Method();
}