llvm-project/lldb/test/API/functionalities/progress_reporting/main.c

12 lines
144 B
C

int bar(int b) { return b * b; }
int foo(int f) {
int b = bar(f); // break here
return b;
}
int main() {
int f = foo(42);
return f;
}