// PR c++/101233 // { dg-do compile { target c++20 } } template struct A { A(T, U); }; template using B = A; using type = decltype(B{0, 0});