1int nested3() {
2 return 3; // Set break point at this line.
3}
4
5int nested2() {
6 return 2 + nested3();
7}
8
9int nested1() {
10 return 1 + nested2();
11}
12
13
14int main(int argc, char **argv) {
15 return nested1();
16}
17

source code of lldb/test/API/commands/frame/select/main.cpp