Skip to content
Snippets Groups Projects
Commit d4fbdc71 authored by Eli Friedman's avatar Eli Friedman
Browse files

Add missing test for -Wunneeded-member-functions.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@184371 91177308-0d34-0410-b5e6-96231b3b80d8
parent 41c9baed
No related branches found
No related tags found
No related merge requests found
// 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();
}
};
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment