public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libstdc++/99957] New: Ill-formed std::pair construction supported
@ 2021-04-07 12:44 redi at gcc dot gnu.org
  2021-04-07 12:56 ` [Bug libstdc++/99957] " redi at gcc dot gnu.org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: redi at gcc dot gnu.org @ 2021-04-07 12:44 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 99957
           Summary: Ill-formed std::pair construction supported
           Product: gcc
           Version: 11.0
            Status: UNCONFIRMED
          Keywords: accepts-invalid
          Severity: minor
          Priority: P3
         Component: libstdc++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: redi at gcc dot gnu.org
  Target Milestone: ---

This shouldn't compile:

#include <utility>

struct move_only
{
    move_only() = default;
    move_only(move_only&&) = default;
};

move_only mo() { return {}; }

std::pair<void*, move_only> p0(0, mo());
std::pair<void*, move_only> p1({}, mo());

According to the standard, these constructors are considered:

  pair(const first_type&, const second_type&);
  template<class U1, class U2> pair(U1&&, U2&&);

For both p0 and p1, the first does not participate in overload resolution
because second_type is not copy constructible.

For p0, the second constructor does not participate because U1 is deduced as
int, and a pointer cannot be constructed from int. For p1, U1 cannot be deduced
from {}.

The code compiles with libstdc++ because we have additional non-standard
constructors, added by PR 40925 and described in
https://gcc.gnu.org/pipermail/libstdc++/2021-April/052299.html (where I
proposed to deprecate these non-standard constructors, and eventually remove
them).

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-04-28 17:01 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-07 12:44 [Bug libstdc++/99957] New: Ill-formed std::pair construction supported redi at gcc dot gnu.org
2021-04-07 12:56 ` [Bug libstdc++/99957] " redi at gcc dot gnu.org
2021-04-28 16:57 ` cvs-commit at gcc dot gnu.org
2021-04-28 16:57 ` cvs-commit at gcc dot gnu.org
2021-04-28 17:01 ` redi at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).