llvm-project/lldb/test/API/functionalities/unwind/zeroth_frame/main.c

9 lines
136 B
C

void func_inner() {
int a = 1; // Set breakpoint 1 here
}
int main() {
func_inner();
return 0; // Set breakpoint 2 here
}