public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/96531] New: ICE for concepts here.
@ 2020-08-07 22:38 euloanty at live dot com
  2020-08-12 12:57 ` [Bug c++/96531] [10/11 Regression] " ppalka at gcc dot gnu.org
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: euloanty at live dot com @ 2020-08-07 22:38 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 96531
           Summary: ICE for concepts here.
           Product: gcc
           Version: 11.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: euloanty at live dot com
  Target Milestone: ---

#include<variant>
#include<concepts>

template<typename ... Args> struct pack {};
template<typename ... Args> struct uv : std::false_type {};
template<typename ... Args> struct uv<std::variant<Args...>> {
    using type = pack<Args...>;
};

template <typename T, typename ... Args>
concept is_any_of_impl_4 = requires(pack<Args>) {
    requires (std::same_as<T, Args> || ...);
};

inline std::variant<int, double> v;

template <typename T>
requires is_any_of_impl_4<bool, uv<decltype(v)>::type>
void bar() {}

int main() {
    bar<int>();
}

https://godbolt.org/z/WPdePT
<source>: In instantiation of 'void bar() [with T = int]':

<source>:22:14:   required from here

<source>:12:14: internal compiler error: in tsubst_pack_expansion, at
cp/pt.c:12924

   12 |     requires (std::same_as<T, Args> || ...);

      |     ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Please submit a full bug report,

with preprocessed source if appropriate.

See <https://gcc.gnu.org/bugs/> for instructions.

Compiler returned: 1

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

end of thread, other threads:[~2021-03-31 12:35 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-07 22:38 [Bug c++/96531] New: ICE for concepts here euloanty at live dot com
2020-08-12 12:57 ` [Bug c++/96531] [10/11 Regression] " ppalka at gcc dot gnu.org
2020-09-18 18:50 ` ppalka at gcc dot gnu.org
2020-09-19 15:18 ` cvs-commit at gcc dot gnu.org
2020-10-07 18:55 ` ppalka at gcc dot gnu.org
2020-10-12 12:36 ` [Bug c++/96531] [10 " rguenth at gcc dot gnu.org
2021-03-31 12:33 ` cvs-commit at gcc dot gnu.org
2021-03-31 12:35 ` ppalka 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).