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