From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3186 invoked by alias); 24 Mar 2002 14:06:27 -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 3139 invoked by uid 61); 24 Mar 2002 14:06:25 -0000 Date: Sun, 24 Mar 2002 06:06:00 -0000 Message-ID: <20020324140625.3138.qmail@sources.redhat.com> To: Klaus.Kretschel@dlr.de, gcc-bugs@gcc.gnu.org, gcc-prs@gcc.gnu.org, nobody@gcc.gnu.org From: nathan@gcc.gnu.org Reply-To: nathan@gcc.gnu.org, Klaus.Kretschel@dlr.de, gcc-bugs@gcc.gnu.org, gcc-prs@gcc.gnu.org, nobody@gcc.gnu.org, gcc-gnats@gcc.gnu.org X-Mailer: gnatsweb 2.9.3 Subject: Re: c++/6023: [parser] wrong lookup on templated code X-SW-Source: 2002-03/txt/msg00898.txt.bz2 List-Id: Old Synopsis: Valid template code does not compile New Synopsis: [parser] wrong lookup on templated code State-Changed-From-To: open->suspended State-Changed-By: nathan State-Changed-When: Sun Mar 24 06:06:25 2002 State-Changed-Why: The code is not well formed, but g++ makes a right cock up of it. I've attached an amended test case which I hope helps. you need to say h->template foo (...) as h is a dependant type. We can't lookup foo until instantiation time, so you must explicitly say that it will be a template. the reason 'calc' succeeds is that there is a template of that name in scope, and g++ finds that during parsing (in error) -- at instantiation time the right things happen http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&database=gcc&pr=6023