public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/109159] New: explicit constructor is used in copy-initialization
@ 2023-03-16 19:51 fchelnokov at gmail dot com
  2023-03-16 21:35 ` [Bug c++/109159] " pinskia at gcc dot gnu.org
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: fchelnokov at gmail dot com @ 2023-03-16 19:51 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 109159
           Summary: explicit constructor is used in copy-initialization
           Product: gcc
           Version: 12.2.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: fchelnokov at gmail dot com
  Target Milestone: ---

The following code must be accepted (as it does in Clang and MSVC):

struct A {
    A( float ) {}
    template<class U>
    explicit A( U ) {}
};

template<class T>
concept CopyFromIntList = requires( T t ) { t = { 1 }; };

static_assert( !CopyFromIntList<A> );

because 't = {1}' is invalid: chosen constructor is explicit in
copy-initialization.

But in GCC static_assert fails. Online demo:
https://gcc.godbolt.org/z/Pf47E6dno

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

end of thread, other threads:[~2023-03-27 14:06 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-16 19:51 [Bug c++/109159] New: explicit constructor is used in copy-initialization fchelnokov at gmail dot com
2023-03-16 21:35 ` [Bug c++/109159] " pinskia at gcc dot gnu.org
2023-03-16 21:35 ` pinskia at gcc dot gnu.org
2023-03-16 21:42 ` [Bug c++/109159] [10/11/12/13 Regression] " pinskia at gcc dot gnu.org
2023-03-16 21:46 ` mpolacek at gcc dot gnu.org
2023-03-17 21:16 ` mpolacek at gcc dot gnu.org
2023-03-20 20:54 ` cvs-commit at gcc dot gnu.org
2023-03-20 20:56 ` [Bug c++/109159] [10/11/12 " mpolacek at gcc dot gnu.org
2023-03-27 14:06 ` mpolacek 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).