This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/20381] ICE in build_ptrmemfunc, at cp/typeck.c:5702
- From: "martin at mpa-garching dot mpg dot de" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 8 Mar 2005 12:19:34 -0000
- Subject: [Bug c++/20381] ICE in build_ptrmemfunc, at cp/typeck.c:5702
- References: <20050308103600.20381.micis@gmx.de>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From martin at mpa-garching dot mpg dot de 2005-03-08 12:19 -------
Here is a shorter testcase:
class foo {
public:
int f1(int);
};
template<typename T> class bar: public foo {
void baz () {
&foo::f1;
}
};
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20381