aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/commands/expression/static-initializers/main.cpp
blob: 4b0a082d296ec4e4e77ca8a6c8e32204b2c8730d (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <cstdlib>

int counter = 0;

void inc_counter() { ++counter; }

void do_abort() { std::abort(); }

int main() {
  return 0; // break here
}