1
2int func() { return 1; }
3
4int
5main(int argc, char const *argv[])
6{
7 int a = 0; // breakpoint_1
8 int b = func(); // breakpoint_2
9 a = b + func(); // breakpoint_3
10 return 0; // breakpoint_4
11}
12
13

source code of lldb/test/API/functionalities/breakpoint/step_over_breakpoint/main.cpp