bolt/deps/llvm-18.1.8/lldb/test/API/tools/lldb-dap/console/main.cpp

10 lines
164 B
C++
Raw Normal View History

2025-02-14 19:21:04 +01:00
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;
}