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]
Other format: [Raw text]

[Bug c++/36576] gcc 4.3.1 doesn't build for me on openSUSE 10.3



------- 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


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