blob: 0da412ab290618db44a1a90827f17b441987c987 [file] [log] [blame]
Anders Carlssonea7140a2008-08-22 05:00:02 +00001// RUN: clang -fsyntax-only -verify %s
2int f()
3{
4 return 10;
5}
6
7void g()
8{
9 static int a = f();
10}
11
12static int b = f();