[Clang] Prevent `mlink-builtin-bitcode` from internalizing the RPC client (#118661)
[llvm-project.git] / lldb / test / API / commands / expression / multiline-completion / main.c
blob071c02dfe7398269cf8d6102df16c36ed184f7a6
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
8 int main(int argc, char **argv) {
9 int to_complete = 0;
10 return to_complete + single_local_func();