This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
g++ bug report (egcs-971016)
- To: egcs-bugs at cygnus dot com
- Subject: g++ bug report (egcs-971016)
- From: Stefan Naeher <naeher at infsn dot informatik dot uni-halle dot de>
- Date: Wed, 22 Oct 1997 17:34:37 +0200 (MET DST)
the following piece of code compiles with g++-2.7.2
however, with g++ snapshot 971016 it produces the
error message:
bug.c: In function `void test(T &)':
bug.c:17: parse error before `0'
class xyz {
typedef char* ptr_type;
public:
void func(ptr_type);
};
template<class T>
void test(T& x) {
x.func((T::ptr_type)0);
}