llvm-project/lldb/test/Shell/ScriptInterpreter/Python/Crashlog/Inputs/test.c

9 lines
106 B
C

void foo() {
int *i = 0;
*i = 1;
}
void bar() { foo(); }
int main(int argc, char **argv) { bar(); }