Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
9ffe5a352559434c6abb04639cea57f504767293
/
.
/
clang
/
test
/
Modules
/
Inputs
/
codegen
/
foo.h
blob: b3a7af7c9d9bc650a03d8f434c7ea51ec2fb804f [
file
] [
log
] [
blame
]
David Blaikie
9ffe5a3
2017-01-30 05:00:26 +0000
[
diff
] [
blame^
]
1
void
f1
(
int
&);
2
static
void
f2
()
{}
3
inline
void
foo
()
{
4
static
int
i
;
5
f1
(
i
);
6
f2
();
7
}
8
inline
void
foo2
()
{
9
}
10
void
foo_ext
()
{}