aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/functionalities/statusline/main.c
blob: 7182181ba2492ecabaa49f1629ea6b7ce47175ac (plain)
1
2
3
4
5
6
7
8
9
int foo(int f) {
  int b = f * f; // Break here
  return b;
}

int main() {
  int f = foo(42);
  return f;
}