From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id E194A382D43A; Fri, 5 Mar 2021 17:12:11 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E194A382D43A From: "arthur.j.odwyer at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/99417] New: [C++17] std::variant assignment fails to compile Date: Fri, 05 Mar 2021 17:12:11 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: arthur.j.odwyer at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: gcc-bugs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-bugs mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Mar 2021 17:12:12 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D99417 Bug ID: 99417 Summary: [C++17] std::variant assignment fails to compile Product: gcc Version: unknown Status: UNCONFIRMED Severity: normal Priority: P3 Component: libstdc++ Assignee: unassigned at gcc dot gnu.org Reporter: arthur.j.odwyer at gmail dot com Target Milestone: --- // https://godbolt.org/z/b3P6Ta #include struct Original {}; struct C { C(const Original&); C(C&&) noexcept; C& operator=3D(const Original&); ~C(); }; void testc(std::variant& vc, const Original& original) { vc =3D original; } In file included from :1:/include/c++/11.0.1/variant:1445:3: error: call to deleted member function 'operator=3D' operator=3D(variant(std::forward<_Tp>(__rhs))); ^~~~~~~~~ :13:8: note: in instantiation of function template specialization 'std::variant::operator=3D' requested here vc =3D original; ^ /include/c++/11.0.1/variant:1368:16: note: candidate function has been implicitly deleted variant& operator=3D(const variant&) =3D default; ^ /include/c++/11.0.1/variant:1431:2: note: candidate template ignored: requirement '__not_self &&>' was not satisfied [with _Tp =3D std::variant] operator=3D(_Tp&& __rhs) ^ 1 error generated. Removing the keyword `noexcept` from the move-constructor makes this compil= e. It compiles fine (with or without `noexcept`) on libc++ and MSVC STL.=