xref: /llvm-project/lldb/test/API/tools/lldb-dap/breakpoint/other.c (revision 01263c6c6fb495a94fe0ccbb1420bb1ec8460748)

foo(int x)1 extern int foo(int x) {
2   int y = x + 42; // break other
3   int z = y + 42;
4   return z;
5 }
6