Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
34faffac00434ac706dc4f8a4934d6a50ca4addb
/
.
/
test
/
CodeGen
/
static-forward-decl-fun.c
blob: 69080e3a0389537d5c5a82e9b7fba337f13c1ddf [
file
] [
log
] [
blame
]
// RUN: clang %s -emit-llvm -o %t
static
int
staticfun
(
void
);
int
(*
staticuse1
)(
void
)
=
staticfun
;
static
int
staticfun
()
{
return
1
;}
int
(*
staticuse2
)(
void
)
=
staticfun
;