This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

g++ bug report (egcs-971016)



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);
}




Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]