This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
Re: A simple testcase (Re: [RFC] middle-end/21743...)
- From: Paolo Carlini <pcarlini at suse dot de>
- To: Andrew Pinski <pinskia at physics dot uc dot edu>
- Cc: libstdc++ <libstdc++ at gcc dot gnu dot org>, Roger at eyesopen dot com,"Kaveh R. Ghazi" <ghazi at caip dot rutgers dot edu>
- Date: Fri, 27 May 2005 16:39:03 +0200
- Subject: Re: A simple testcase (Re: [RFC] middle-end/21743...)
- References: <72b63452b429e991db0597b34d470fff@physics.uc.edu>
Andrew Pinski wrote:
> This looks like a real bug.
Yes, it's a BAD bug. Do you want a simpler testcase?
namespace mine
{
int cpow;
};
int cabs; // Ok
using mine::cpow; // Not ok.
S*it! Using is wrong wrt names of builtins. I'm filing a PR about this.
Paolo.