https://gcc.gnu.org/bugzilla/show_bug.cgi?id=116424
Andrew Pinski <pinskia at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Ever confirmed|0 |1 Status|UNCONFIRMED |NEW --- Comment #7 from Andrew Pinski <pinskia at gcc dot gnu.org> --- Reduced testcase: ``` struct dd { char *ptr; dd(); dd(dd &&__str); }; struct v { dd n{}; int f = -1; v operator|(const v &other) const; }; struct cc : v {}; static const cc a; static const cc b; static const cc c(a | b); ```