blob: ca49fce052e367ec89aa8758f7631a1205d91b69 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Mike Stump1eb44332009-09-09 15:08:12 +00002int f() {
3 return 10;
Anders Carlssonc5eb7312008-08-22 05:00:02 +00004}
5
Mike Stump1eb44332009-09-09 15:08:12 +00006void g() {
7 static int a = f();
Anders Carlssonc5eb7312008-08-22 05:00:02 +00008}
9
10static int b = f();