xref
: /
llvm-project-15.0.7
/
lldb
/
test
/
API
/
lang
/
cpp
/
overloaded-functions
/
static-a.cpp
(revision c6f7b720)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
static
int
Static
()
2
{
3
return
1
;
4
}
5
6
int
CallStaticA
()
7
{
8
return
Static
();
9
}
10