llvm-project/lldb/test/API/tools/lldb-vscode/breakpoint/other.c

6 lines
89 B
C

extern int foo(int x) {
int y = x + 42; // break other
int z = y + 42;
return z;
}