[Accepted as a DR at the February, 2023 meeting.]
Subclause 12.2.2.9 [over.match.class.deduct] paragraph 3 has an exception only for deduction failure for non-deduced contexts when deducing the return type from the defining-type-id, but not for other cases where deduction fails according to 13.10.3.6 [temp.deduct.type] paragraph 2. For example,
template <class S1, class S2> struct C { C(...); }; template<class T1> C(T1) -> C<T1, T1>; template<class T1, class T2> C(T1, T2) -> C<T1 *, T2>; template<class V1, class V2> using A = C<V1, V2>; C c1{""}; A a1{""}; C c2{"", 1}; A a2{"", 1};
resulting in A having neither of these deduction guides. There is implementation divergence in the handling of this example.