From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7761 invoked by alias); 27 Jul 2013 17:47:14 -0000 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 Received: (qmail 7702 invoked by uid 48); 27 Jul 2013 17:47:11 -0000 From: "lin90162 at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/58004] New: Internal compiler error in unify_one_argument, at cp/pt.c:15445 Date: Sat, 27 Jul 2013 17:47:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: lin90162 at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2013-07/txt/msg01331.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58004 Bug ID: 58004 Summary: Internal compiler error in unify_one_argument, at cp/pt.c:15445 Product: gcc Version: unknown Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: lin90162 at gmail dot com Code: // hoge.cpp template< class T, T... V > struct L{}; template< class T, class U = L > struct X; template< char... V > struct X< char, L > {}; int main() { typename X::type a; // instantiate specialized template class return 0; } // end of hoge.cpp Error message: hoge.cpp: In function 'int main()': hoge.cpp:13:21: internal compiler error: in unify_one_argument, at cp/pt.c:15445 typename X::type a; // specialized template instantiation ^ hoge.cpp:13:21: internal compiler error: Abort trap: 6 g++-4.8: internal compiler error: Abort trap: 6 (program cc1plus) [1] 37562 abort g++-4.8 -std=c++11 -Wall -Wextra -O2 hoge.cpp GCC should occur 'invalid template type argument' error because first template argument of L should be a type but first template argument of L is a value. This internal compiler error seems to occur only in template specialization. I tested this code in gcc 4.7.3, 4.8.1 and 4.9.0 20130726 and all of them fail.