1int global = 42;
2
3int
4bar(int x)
5{
6 int y = 4*x + global;
7 return y;
8}
9
10int
11foo(int x)
12{
13 int y = 2*bar(x: 3*x);
14 return y;
15}
16
17int
18main()
19{
20 return 0 * foo(x: 1);
21}
22

source code of lldb/test/API/functionalities/process_save_core/main.cpp