1static int foo(int x, int y) {
2 return x + y; // BREAK HERE
3}
4
5static int bar(int x) {
6 return foo(x: x + 1, y: x * 2);
7}
8
9int main (int argc, char const *argv[])
10{
11 return bar(x: argc + 2);
12}
13

source code of lldb/test/API/python_api/lldbutil/process/main.cpp