Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
c20482b10ee4ffcea31f67392743ccdf6df1f7f4
/
.
/
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
();