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
This commit is contained in:
Richard Smith 2016-05-19 01:41:52 +00:00
parent 30a63fba50
commit 8001fc86f4
1 changed files with 0 additions and 9 deletions

View File

@ -323,12 +323,3 @@ namespace test8 {
.**(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;
}