public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/52233] New: ICE segmentation fault with non-recursive templates
@ 2012-02-13 14:35 pubby.8 at gmail dot com
  2012-02-20 21:40 ` [Bug c++/52233] " pinskia at gcc dot gnu.org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: pubby.8 at gmail dot com @ 2012-02-13 14:35 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52233

             Bug #: 52233
           Summary: ICE segmentation fault with non-recursive templates
    Classification: Unclassified
           Product: gcc
           Version: 4.7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: pubby.8@gmail.com


I'm getting a compiler segfault with the following code:

template <typename t>
struct foo {
  template <template <typename...> class... xs>
  using type = int;
};

template <typename t, template <typename...> class... xs>
struct bar {
  using type = typename foo<t>::template type<xs...>;
};

bar<int, foo> x;

> In instantiation of ‘struct bar<int, foo>’:
> 12:15:   required from here
> 7:55: internal compiler error: Segmentation fault

If I manually expand the parameter 't' then it compiles:

using type = typename foo<int>::template type<xs...>;


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

end of thread, other threads:[~2012-10-04 23:52 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-02-13 14:35 [Bug c++/52233] New: ICE segmentation fault with non-recursive templates pubby.8 at gmail dot com
2012-02-20 21:40 ` [Bug c++/52233] " pinskia at gcc dot gnu.org
2012-10-04 23:37 ` [Bug c++/52233] ICE segmentation fault with using-declaration paolo.carlini at oracle dot com
2012-10-04 23:48 ` paolo at gcc dot gnu.org
2012-10-04 23:52 ` paolo.carlini at oracle 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).