1#include <cstdlib>
2
3int counter = 0;
4
5void inc_counter() { ++counter; }
6
7void do_abort() { std::abort(); }
8
9int main() {
10 return 0; // break here
11}
12

source code of lldb/test/API/commands/expression/static-initializers/main.cpp