summaryrefslogtreecommitdiffstats
path: root/gnu/llvm/lldb/packages/Python/lldbsuite/test/commands/expression/static-initializers/main.cpp
blob: 0bcf1eb3edafb67c32842d1a8093512b8308c30a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include <cstdlib>

int counter = 0;

void inc_counter() { ++counter; }

void do_abort() { abort(); }

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