summaryrefslogtreecommitdiffstats
path: root/test/SemaCXX/warn-member-not-needed.cpp
blob: 61bb3488c611693472f3e3e35017c3b606e4c043 (plain)
1
2
3
4
5
6
7
8
9
10
11
// RUN: %clang_cc1 -fsyntax-only -verify -Wunneeded-member-function %s

namespace {
  class A {
    void g() {} // expected-warning {{is not needed and will not be emitted}}
    template <typename T>
    void foo() {
      g();
    }
  };
}
OpenPOWER on IntegriCloud