repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[Clang] Prevent `mlink-builtin-bitcode` from internalizing the RPC client (#118661)
[llvm-project.git]
/
lldb
/
test
/
API
/
commands
/
expression
/
multiline-completion
/
main.c
blob
071c02dfe7398269cf8d6102df16c36ed184f7a6
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
8
int
main
(
int
argc
,
char
**
argv
) {
9
int
to_complete
=
0
;
10
return
to_complete
+
single_local_func
();
11
}