1int function(int x) {
2 if ((x % 2) == 0)
3 return function(x: x - 1) + x; // breakpoint 1
4 else
5 return x;
6}
7
8int main(int argc, char const *argv[]) { return function(x: 2); }
9

source code of lldb/test/API/tools/lldb-dap/save-core/main.cpp