summaryrefslogtreecommitdiff
path: root/lldb/test/API/functionalities/thread/step_out_line0/main.c
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
}