xref: /llvm-project/lldb/test/API/commands/expression/multiline-completion/main.c (revision bbe3c479a6adf0abfe5d111e9ba206daa5a1eb2b)

single_local_func()1 int single_local_func() {
2   // This function should always only have a single local variable and no
3   // parameters.
4   int only_local = 3;
5   return only_local; // break in single_local_func
6 }
7 
main(int argc,char ** argv)8 int main(int argc, char **argv) {
9   int to_complete = 0;
10   return to_complete + single_local_func();
11 }
12