From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5776 invoked by alias); 17 Jan 2003 10:16:04 -0000 Mailing-List: contact gcc-prs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-prs-owner@gcc.gnu.org Received: (qmail 5762 invoked by uid 71); 17 Jan 2003 10:16:03 -0000 Date: Fri, 17 Jan 2003 10:16:00 -0000 Message-ID: <20030117101603.5761.qmail@sources.redhat.com> To: nobody@gcc.gnu.org Cc: gcc-prs@gcc.gnu.org, From: "Zeisel Helmut VAI.ATI 3" Subject: Re: c++/9328: [3.2/3.3/3.4 regression] ICE with templates and namespace std members Reply-To: "Zeisel Helmut VAI.ATI 3" X-SW-Source: 2003-01/txt/msg01034.txt.bz2 List-Id: The following reply was made to PR c++/9328; it has been noted by GNATS. From: "Zeisel Helmut VAI.ATI 3" To: , , , Cc: Subject: Re: c++/9328: [3.2/3.3/3.4 regression] ICE with templates and namespace std members Date: Fri, 17 Jan 2003 11:14:15 +0100 In the meanwhile I found that this ICE has nothing to do with templates = and namespaces, but is a problem of typeof(X) when the type of X cannot be uniquely = derived. The same ICE occurs in the following code: double f(double); float f(float); void h(typeof(f) g) {} Helmut =20