blob: ad0c1c05d6952391f43d9461bdb4cc822e0d213b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
int step_out_of_here(int a) {
return a + 5; // Set breakpoint here
}
int main() {
#line 0
int v = step_out_of_here(3) + 7;
#line 9
v += 11; // Should stop here
return v; // Ran too far
}
|