1
2int multiply(int x, int y) {
3 return x * y; // breakpoint 1
4}
5
6int main(int argc, char const *argv[]) {
7 int result = multiply(x: argc, y: 20);
8 return result < 0;
9}
10

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