// PR c++/60216 // { dg-require-effective-target c++11 } struct A { template A(T) = delete; }; template<> A::A(int) {} A a(0);