bolt/deps/llvm-18.1.8/lldb/test/API/tools/lldb-dap/console/main.cpp
2025-02-14 19:21:04 +01:00

9 lines
164 B
C++

int multiply(int x, int y) {
return x * y; // breakpoint 1
}
int main(int argc, char const *argv[]) {
int result = multiply(argc, 20);
return result < 0;
}