1int
2main(int argc, char const *argv[])
3{
4 int a = 0;
5 int b = 1;
6 a = b + 1; // Set breakpoint here
7 b = a + 1;
8 return 0;
9}
10
11

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