]> granicus.if.org Git - clang/commitdiff
Revert accidentally-committed test for PR27558 (which currently fails...)
authorRichard Smith <richard-llvm@metafoo.co.uk>
Thu, 19 May 2016 01:41:52 +0000 (01:41 +0000)
committerRichard Smith <richard-llvm@metafoo.co.uk>
Thu, 19 May 2016 01:41:52 +0000 (01:41 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@270010 91177308-0d34-0410-b5e6-96231b3b80d8

test/SemaCXX/member-pointer.cpp

index ef76279c37e8cb6a80ec85aba85014cb10db123d..f3adb95977a14efaf1e934144fc73dde307bfc59 100644 (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;
-}