blob: 65721f44f57073467732cef5546e62cfb9493962 [file] [log] [blame]
Rafael Espindoladfa5f9b2012-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}
Rafael Espindola17797602012-12-26 04:38:44 +000018
19namespace test3 {
20 static void f();
21 template<typename T>
22 static void g() {
23 f();
24 }
25 static void f() {
26 }
27 void h() {
28 g<int>();
29 }
30}
Rafael Espindola820fa702013-01-08 19:43:34 +000031
32namespace test4 {
33 static void f();
34 static void f();
35 template<typename T>
36 static void g() {
37 f();
38 }
39 static void f() {
40 }
41 void h() {
42 g<int>();
43 }
44}
Rafael Espindola77c60082013-10-22 21:56:29 +000045
46namespace test4 {
47 static void func();
48 void bar() {
49 void func();
50 func();
51 }
52 static void func() {}
53}