// PR c++/84937 // { dg-do compile { target c++17 } } template struct A {}; template struct B { template B(A); }; B b(A<0,0>{});