1int bar(int b) { return b * b; }
2
3int foo(int f) {
4 int b = bar(b: f); // break here
5 return b;
6}
7
8int main() {
9 int f = foo(f: 42);
10 return f;
11}
12

source code of lldb/test/API/functionalities/progress_reporting/main.c