aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/functionalities/breakpoint/consecutive_breakpoints/main.cpp
blob: 39bad55dad1015760096513a093caaa50f60a0c3 (plain)
1
2
3
4
5
6
7
8
9
10
int
main(int argc, char const *argv[])
{
    int a = 0;
    int b = 1;
    a = b + 1; // Set breakpoint here
    b = a + 1;
    return 0;
}