public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libstdc++/97449] New: libstdc++ <variant> cannot be compiled with clang after 3427e31331677ca826c5588c87924214f7e5c54b
@ 2020-10-15 16:47 foom at fuhm dot net
  2020-10-15 17:06 ` [Bug libstdc++/97449] [11 Regression] " redi at gcc dot gnu.org
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: foom at fuhm dot net @ 2020-10-15 16:47 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 97449
           Summary: libstdc++ <variant> cannot be compiled with clang
                    after 3427e31331677ca826c5588c87924214f7e5c54b
           Product: gcc
           Version: 11.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libstdc++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: foom at fuhm dot net
  Target Milestone: ---

After 3427e31331677ca826c5588c87924214f7e5c54b, "clang -std=c++17" (using
libstdc++ headers), on a file that has simply "#include <variant>" fails with
this error:

In file included from <source>:1:

/opt/compiler-explorer/gcc-snapshot/lib/gcc/x86_64-linux-gnu/11.0.0/../../../../include/c++/11.0.0/variant:1032:10:
error: no matching constructor for initialization of 'std::__nonesuch'
                return __nonesuch{};
                       ^         ~~

/opt/compiler-explorer/gcc-snapshot/lib/gcc/x86_64-linux-gnu/11.0.0/../../../../include/c++/11.0.0/type_traits:2953:5:
note: candidate constructor not viable: requires 1 argument, but 0 were
provided
    __nonesuch(__nonesuch const&) = delete;
    ^

(https://godbolt.org/z/951jYr)

I believe Clang is correct to reject this code, due to
http://eel.is/c++draft/temp.res#general-8.1
"""
The program is ill-formed, no diagnostic required, if:
- no valid specialization can be generated for a template or a substatement of
a constexpr if statement within a template and the template is not instantiated
"""

The invalid return statement probably needs to be made dependent on
__visit_ret_type_mismatch just like the static_assert.

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

end of thread, other threads:[~2020-10-17 20:12 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-15 16:47 [Bug libstdc++/97449] New: libstdc++ <variant> cannot be compiled with clang after 3427e31331677ca826c5588c87924214f7e5c54b foom at fuhm dot net
2020-10-15 17:06 ` [Bug libstdc++/97449] [11 Regression] " redi at gcc dot gnu.org
2020-10-15 17:06 ` redi at gcc dot gnu.org
2020-10-15 18:36 ` ville.voutilainen at gmail dot com
2020-10-16  6:15 ` rguenth at gcc dot gnu.org
2020-10-16  7:28 ` ville.voutilainen at gmail dot com
2020-10-17 20:11 ` cvs-commit at gcc dot gnu.org
2020-10-17 20:12 ` ville.voutilainen at gmail dot com

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).