blob: 0620f484d9cba5070c70a8462d9107081d278a0d [file] [log] [blame]
Daniel Dunbar8fbe78f2009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Andy Gibbsc6e68da2012-10-19 12:44:48 +00002// expected-no-diagnostics
Mike Stump11289f42009-09-09 15:08:12 +00003int f() {
4 return 10;
Anders Carlsson41e08812008-08-22 05:00:02 +00005}
6
Mike Stump11289f42009-09-09 15:08:12 +00007void g() {
8 static int a = f();
Anders Carlsson41e08812008-08-22 05:00:02 +00009}
10
11static int b = f();