mirror of https://github.com/microsoft/clang.git
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:
parent
30a63fba50
commit
8001fc86f4
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue