https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109159

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
     Ever confirmed|0                           |1
   Last reconfirmed|                            |2023-03-16
             Status|UNCONFIRMED                 |NEW

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Reduced testcase without the constraint that GCC accepts:
struct A {
    A( float ) {}
    template<class U>
    explicit A( U ) {}
};

void f(A t)
{
  t = {1};
}

Reply via email to