Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
6bfd6218e822abae4a030889a2a82c722460e36a
/
.
/
test
/
CodeGen
/
static-forward-decl-fun.c
blob: 636c8fb0d7fac65b9fdeff4584560a145a9eb497 [
file
] [
log
] [
blame
]
Eli Friedman
109603d
2008-05-30 11:13:18 +0000
[
diff
] [
blame
]
1
// RUN: clang %s -emit-llvm
2
3
static
int
staticfun
(
void
);
4
int
(*
staticuse1
)(
void
)
=
staticfun
;
5
static
int
staticfun
()
{
return
1
;}
6
int
(*
staticuse2
)(
void
)
=
staticfun
;