blob: 3d92a532ae1a23c1d3ba2b4771c26997cc109246 [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -fsyntax-only -verify %s
Anders Carlssonc5eb7312008-08-22 05:00:02 +00002int f()
3{
4 return 10;
5}
6
7void g()
8{
9 static int a = f();
10}
11
12static int b = f();