1int bar(int x, int y) { return x + y + 5; }
2
3int foo(int x, int y) { return bar(x, y) + 12; }
4
5int main(int argc, char **argv) { return foo(x: 33, y: 78); }
6

source code of lldb/test/Shell/SymbolFile/OnDemand/Inputs/basic.cpp