blob: 628075ac04dded2de87da352b40f0a31f86ee8f7 [file] [log] [blame]
Argyrios Kyrtzidisbeb71b32010-08-17 22:06:44 +00001// RUN: %clang_cc1 -fsyntax-only -verify -Wunused -Wunused-member-function %s
Argyrios Kyrtzidis1b30d9c2010-08-15 01:15:20 +00002
3static void f1(); // expected-warning{{unused}}
4
5namespace {
6 void f2(); // expected-warning{{unused}}
7
8 void f3() { } // expected-warning{{unused}}
9
10 struct S {
11 void m1() { } // expected-warning{{unused}}
12 void m2(); // expected-warning{{unused}}
13 void m3();
Argyrios Kyrtzidis04c7fa02010-08-15 10:17:33 +000014 S(const S&);
15 void operator=(const S&);
Argyrios Kyrtzidis1b30d9c2010-08-15 01:15:20 +000016 };
17
18 template <typename T>
19 struct TS {
20 void m();
21 };
22 template <> void TS<int>::m() { } // expected-warning{{unused}}
23
24 template <typename T>
25 void tf() { }
26 template <> void tf<int>() { } // expected-warning{{unused}}
27
28 struct VS {
29 virtual void vm() { }
30 };
31
32 struct SVS : public VS {
33 void vm() { }
34 };
35}
36
37void S::m3() { } // expected-warning{{unused}}
38
39static inline void f4() { }
40const unsigned int cx = 0;
41
42static int x1; // expected-warning{{unused}}
43
44namespace {
45 int x2; // expected-warning{{unused}}
46
47 struct S2 {
48 static int x; // expected-warning{{unused}}
49 };
50
51 template <typename T>
52 struct TS2 {
53 static int x;
54 };
55 template <> int TS2<int>::x; // expected-warning{{unused}}
56}
Chandler Carruth8e666512011-01-03 19:27:19 +000057
58namespace PR8841 {
59 // Ensure that friends of class templates are considered to have a dependent
60 // context and not marked unused.
61 namespace {
62 template <typename T> struct X {
63 friend bool operator==(const X&, const X&) { return false; }
64 };
65 }
66 template <typename T> void template_test(X<T> x) {
67 (void)(x == x);
68 }
69 void test(X<int> x) {
70 template_test(x);
71 }
72}