1void foo() {
2 int *i = 0;
3 *i = 1;
4}
5
6void bar() { foo(); }
7
8int main(int argc, char **argv) { bar(); }
9

source code of lldb/test/Shell/ScriptInterpreter/Python/Crashlog/Inputs/test.c