summaryrefslogtreecommitdiff
path: root/lldb/test/API/functionalities/breakpoint/step_over_breakpoint/main.cpp
blob: 8cfd34b73b55bdfc8719ece807f21fdac47b8b75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12

int func() { return 1; }

int
main(int argc, char const *argv[])
{
    int a = 0;      // breakpoint_1
    int b = func(); // breakpoint_2
    a = b + func(); // breakpoint_3
    return 0;       // breakpoint_4
}