// PR c++/97679 // { dg-do compile { target c++20 } } template struct A { template struct B { B(T) requires V; template B(T, U) requires V || (__is_same(T, char) && __is_same(U, int)); }; }; A::B x1(0); A::B x2(0); // { dg-error "deduction|no match" } A::B y1(0, '0'); A::B y2(0, '0'); // { dg-error "deduction|no match" } A::B y3('0', 0);