(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
warn/
Wctor-dtor2.C
// PR c++/85792
// { dg-do compile { target c++11 } }
// { dg-additional-options -Wctor-dtor-privacy }

template<typename T> struct A { };

template<typename T> struct B : A<T> {
  using A<T>::A;

  B(const B&) { }
};