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

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