This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c++/53786] [C++11] alias template causes g++ segfault


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

--- Comment #2 from Hristo Venev <mustrumr97 at gmail dot com> 2012-06-30 15:19:29 UTC ---
Reduced:

template<class... x>
class list{};
template<class a, class... b>
using tail=list<b...>;
template<class... x>
using tail2=tail<x...>;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]