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

12 lines
149 B
C++
Raw Normal View History

2025-02-14 19:21:04 +01:00
#include <cstdlib>
int counter = 0;
void inc_counter() { ++counter; }
void do_abort() { std::abort(); }
int main() {
return 0; // break here
}