1 // RUN: clang-cc -fsyntax-only -verify %s
2 int f()
3 {
4 	return 10;
5 }
6 
7 void g()
8 {
9 	static int a = f();
10 }
11 
12 static int b = f();
13