From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23646 invoked by alias); 1 Jul 2003 15:26:48 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 23636 invoked by uid 48); 1 Jul 2003 15:26:47 -0000 Date: Tue, 01 Jul 2003 15:26:00 -0000 Message-ID: <20030701152647.23635.qmail@sources.redhat.com> From: "reichelt at gcc dot gnu dot org" To: gcc-bugs@gcc.gnu.org In-Reply-To: <20030618140410.11237.ehrhardt@mathematik.uni-ulm.de> References: <20030618140410.11237.ehrhardt@mathematik.uni-ulm.de> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug c++/11237] Internal Compiler Error (segfault) in convert_from_reference at cvt.c:568 X-Bugzilla-Reason: CC X-SW-Source: 2003-07/txt/msg00047.txt.bz2 List-Id: PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org. http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11237 ------- Additional Comments From reichelt at gcc dot gnu dot org 2003-07-01 15:26 ------- Here's a slightly shorter testcase that crashes since gcc 2.95.x :-( =========================================================================== template struct A {}; template struct B { enum {e}; }; template void foo() { } template A::e + 1> foo(T, U) { foo(); } void bar() { foo(0,0); } ===========================================================================