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