Cross Reference: static-a.cpp
xref
: /
external
/
lldb
/
test
/
lang
/
cpp
/
overloaded-functions
/
static-a.cpp
Home
History
Annotate
Annotate
Line#
Navigate
Download
only in
static-a.cpp
1
static
int
Static
()
2
{
3
return
1
;
4
}
5
6
int
CallStaticA
()
7
{
8
return
Static
();
9
}
10