From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28238 invoked by alias); 29 Aug 2007 22:04:15 -0000 Received: (qmail 28164 invoked by uid 48); 29 Aug 2007 22:04:02 -0000 Date: Wed, 29 Aug 2007 22:04:00 -0000 Message-ID: <20070829220402.28163.qmail@sourceware.org> X-Bugzilla-Reason: CC References: Subject: [Bug c++/32128] [4.3 regression] ICE on variadic template with two parameter packs In-Reply-To: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "chris dot fairles at gmail dot com" Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2007-08/txt/msg02214.txt.bz2 ------- Comment #1 from chris dot fairles at gmail dot com 2007-08-29 22:04 ------- Not sure if this is same bug: template struct B; template struct B {}; template struct B : public B { H h; }; template class D : B<0,T...> {}; template struct E; template struct E> { typedef decltype(D::template B::h) type; }; int main() { E<1,D>::type d = 4.5; } test2.cpp: In function ‘int main()’: test2.cpp:24: internal compiler error: in unify, at cp/pt.c:12873 Please submit a full bug report, -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32128