blob: a651243df7ef7e3c028b034b12503bfac684f9aa [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -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();