aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/commands/expression/multiline-completion/main.c
blob: 071c02dfe7398269cf8d6102df16c36ed184f7a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
int single_local_func() {
  // This function should always only have a single local variable and no
  // parameters.
  int only_local = 3;
  return only_local; // break in single_local_func
}

int main(int argc, char **argv) {
  int to_complete = 0;
  return to_complete + single_local_func();
}