This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Re: c++/9328: [3.2/3.3/3.4 regression] ICE with templates and namespace std members
- From: "Zeisel Helmut VAI.ATI 3" <Helmut dot Zeisel at vai dot at>
- To: <gcc-gnats at gcc dot gnu dot org>,<gcc-prs at gcc dot gnu dot org>,<helmut dot zeisel at liwest dot at>,<gcc-bugs at gcc dot gnu dot org>
- Date: Fri, 17 Jan 2003 11:14:15 +0100
- Subject: Re: c++/9328: [3.2/3.3/3.4 regression] ICE with templates and namespace std members
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