Skip to content
Snippets Groups Projects
Commit 8001fc86 authored by Richard Smith's avatar Richard Smith
Browse files

Revert accidentally-committed test for PR27558 (which currently fails...)

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@270010 91177308-0d34-0410-b5e6-96231b3b80d8
parent 30a63fba
No related branches found
No related tags found
No related merge requests found
...@@ -323,12 +323,3 @@ namespace test8 { ...@@ -323,12 +323,3 @@ namespace test8 {
.**(int A::**) 0; // expected-warning {{indirection of non-volatile null pointer will be deleted}} expected-note {{consider}} .**(int A::**) 0; // expected-warning {{indirection of non-volatile null pointer will be deleted}} expected-note {{consider}}
} }
} }
namespace PR27558 {
template<typename Args> struct A { void f(); };
template<typename Args> struct B : A<Args> {
using A<Args>::f;
B() { (void)&B<Args>::f; }
};
B<int> b;
}
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