// { dg-do compile { target c++20 } } // But make sure we do consider template conversions that could produce the // right type. template struct Error { static constexpr auto value = T::value; }; // { dg-error "not a member" } struct A { A(const A&); }; template struct B { template operator U() requires Error::value; }; template concept C = requires (B b) { A(b); }; // { dg-message "required from here" } static_assert(!C);