1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// PR c++/60108 // { dg-require-effective-target c++11 } template<int> struct A { virtual ~A(); }; template<typename> struct B : A<0>, A<1> { ~B() = default; }; struct C : B<bool> { C() {} };