summaryrefslogtreecommitdiffstats
path: root/gnu/llvm/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/move_nearest/main.cpp
blob: 76a22a5420fed75df4d97fb6e7e98a10f948fca4 (plain) (blame)
1
2
3
4
5
6
7
8
9
#include "foo.h"

int call_foo2() { return foo2(); }
// BR_Between
int
main() // !BR_main
{
  return call_foo1() + call_foo2();
}