teak-llvm/lldb/packages/Python/lldbsuite/test/commands/expression/static-initializers/main.cpp
2019-10-21 16:07:45 +00:00

12 lines
144 B
C++

#include <cstdlib>
int counter = 0;
void inc_counter() { ++counter; }
void do_abort() { abort(); }
int main() {
return 0; // break here
}