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();