// PR c++/115198 // { dg-do compile { target c++20 } } template struct C { C() = default; C(const C&) = default; }; template using A = C; C c; A a = c; // { dg-bogus "ambiguous" }