Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
47f5209a80c7c75592e87eb296d2b51e03208ae0
/
.
/
test
/
SemaCXX
/
static-initializers.cpp
blob: 0da412ab290618db44a1a90827f17b441987c987 [
file
] [
log
] [
blame
]
// RUN: clang -fsyntax-only -verify %s
int
f
()
{
return
10
;
}
void
g
()
{
static
int
a
=
f
();
}
static
int
b
=
f
();