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