1int bar ()
2{
3 return 5;
4}
5int foo ()
6{
7 return bar() + 5;
8}
9int main ()
10{
11 return foo();
12}
13

source code of lldb/test/API/api/multiple-debuggers/testprog.cpp