aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/Shell/ScriptInterpreter/Python/Crashlog/Inputs/test.c
blob: 3f0819b4b6c1848b5cba88b7cdaf62c871f188e3 (plain)
1
2
3
4
5
6
7
8
void foo() {
  int *i = 0;
  *i = 1;
}

void bar() { foo(); }

int main(int argc, char **argv) { bar(); }