xref: /llvm-project/lldb/test/API/functionalities/breakpoint/move_nearest/main.cpp (revision 99451b4453688a94c6014cac233d371ab4cc342d)
1 #include "foo.h"
2 
call_foo2()3 int call_foo2() { return foo2(); }
4 // BR_Between
5 int
main()6 main() // !BR_main
7 {
8   return call_foo1() + call_foo2();
9 }
10