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

11 lines
193 B
C++

#include <stdio.h>
static void unique_function_name() {
puts(__PRETTY_FUNCTION__); // foo breakpoint 2
}
int foo(int x) {
// foo breakpoint 1
unique_function_name();
return x + 42;
}