xref: /llvm-project/lldb/test/API/tools/lldb-dap/console/main.cpp (revision 01263c6c6fb495a94fe0ccbb1420bb1ec8460748)
1 
multiply(int x,int y)2 int multiply(int x, int y) {
3   return x * y; // breakpoint 1
4 }
5 
main(int argc,char const * argv[])6 int main(int argc, char const *argv[]) {
7   int result = multiply(argc, 20);
8   return result < 0;
9 }
10