(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp2a/
class-deduction-alias16.C
// PR c++/109321
// { dg-do compile { target c++20 } }

struct A;
template<class C1> struct B;
template<class, class C2=A> using D = B<C2>;
void f () { D() = 0; }		// { dg-error "deduction failed|no match" }