llvm-project/lldb/test/API/functionalities/breakpoint/move_nearest/main.cpp

10 lines
130 B
C++

#include "foo.h"
int call_foo2() { return foo2(); }
// BR_Between
int
main() // !BR_main
{
return call_foo1() + call_foo2();
}