------- Comment #13 from pinskia at gcc dot gnu dot org 2008-06-20 14:01 ------- think of:
template<class T> struct CBase<T> { protected: T *i; }; template<> struct CBase<int> { protected: typedef int i; }; template<class T> struct CDerived : public CBase<T> { inline T* foo (void) { return const_cast <T*> i; } } What happens then? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=36576