blob: 437a428664faa0932d8ff6ad123db395fdad5c0e [file] [log] [blame]
Rafael Espindola485458a2012-12-26 00:13:29 +00001// RUN: %clang_cc1 -fsyntax-only -verify -Wall %s
2
3namespace test1 {
4 static void f() {} // expected-warning {{is not needed and will not be emitted}}
5 static void f();
6 template <typename T>
7 void foo() {
8 f();
9 }
10}
11
12namespace test2 {
13 static void f() {}
14 static void f();
15 static void g() { f(); }
16 void h() { g(); }
17}