public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/111031] New: ICE: internal compiler error: in iterative_hash_template_arg, at cp/pt.cc:1747
@ 2023-08-15 16:08 hewillk at gmail dot com
  2023-08-15 17:47 ` [Bug c++/111031] " ppalka at gcc dot gnu.org
  0 siblings, 1 reply; 2+ messages in thread
From: hewillk at gmail dot com @ 2023-08-15 16:08 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 111031
           Summary: ICE: internal compiler error: in
                    iterative_hash_template_arg, at cp/pt.cc:1747
           Product: gcc
           Version: 14.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: hewillk at gmail dot com
  Target Milestone: ---

I will reduce it if I have the bandwidth.

#include <ranges>

namespace std::ranges {

template<class... Rs>
using concat_reference_t = common_reference_t<range_reference_t<Rs>...>;

template<class... Rs>
concept concatable = (requires(const iterator_t<Rs> in) {
  { *in } -> convertible_to<concat_reference_t<Rs...>>;
} && ...);

template<class... Views>
  requires concatable<Views...>
class concat_view { };

template<class... Rs>
concat_view(Rs&&...) -> concat_view<views::all_t<Rs>...>;

}  // namespace std::ranges

int main() {
  int x[] = {0, 1, 2};
  std::ranges::concat_view r(x);
}

https://godbolt.org/z/jEh9YzafT

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

* [Bug c++/111031] ICE: internal compiler error: in iterative_hash_template_arg, at cp/pt.cc:1747
  2023-08-15 16:08 [Bug c++/111031] New: ICE: internal compiler error: in iterative_hash_template_arg, at cp/pt.cc:1747 hewillk at gmail dot com
@ 2023-08-15 17:47 ` ppalka at gcc dot gnu.org
  0 siblings, 0 replies; 2+ messages in thread
From: ppalka at gcc dot gnu.org @ 2023-08-15 17:47 UTC (permalink / raw)
  To: gcc-bugs

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

Patrick Palka <ppalka at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Last reconfirmed|                            |2023-08-15
     Ever confirmed|0                           |1
             Status|UNCONFIRMED                 |NEW

--- Comment #1 from Patrick Palka <ppalka at gcc dot gnu.org> ---
This seems to be a more interesting case of PR105644 where the requires-expr
inside the pack expansion also uses the pack within a nested pack expansion.

A workaround is to factor out the requires-expr from the pack expansion, e.g.

template<class R, class... Rs>
concept single_concatable = requires(const iterator_t<R> in) {
  { *in } -> convertible_to<concat_reference_t<Rs...>>;
};

template<class... Rs>
concept concatable = (single_concatable<Rs, Rs...> && ...);

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

end of thread, other threads:[~2023-08-15 17:47 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-08-15 16:08 [Bug c++/111031] New: ICE: internal compiler error: in iterative_hash_template_arg, at cp/pt.cc:1747 hewillk at gmail dot com
2023-08-15 17:47 ` [Bug c++/111031] " 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).