// PR c++/84015 // { dg-do compile { target c++17 } } template struct A { }; template struct B { templateclass T> B(T); }; A<42> a; B b (a);