From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13887 invoked by alias); 16 Jun 2006 08:28:07 -0000 Received: (qmail 13870 invoked by uid 48); 16 Jun 2006 08:28:01 -0000 Date: Fri, 16 Jun 2006 08:34:00 -0000 Message-ID: <20060616082801.13869.qmail@sourceware.org> X-Bugzilla-Reason: CC References: Subject: [Bug c++/28051] [4.0/4.1/4.2 regression] ICE on invalid conversion operator In-Reply-To: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "reichelt at gcc dot gnu dot org" 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 X-SW-Source: 2006-06/txt/msg01519.txt.bz2 List-Id: ------- Comment #1 from reichelt at gcc dot gnu dot org 2006-06-16 08:28 ------- With Mark's patch for PR 27665 the testcase is now correclty rejected, but we still ICE with the following one: ========================================================= template struct A {}; template struct B : A { using A::operator typename A::X; }; B<0> b; ========================================================= -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28051