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++/32029] Internal Compiler Error on instantiation of template parameter



------- Comment #3 from pinskia at gcc dot gnu dot org  2007-05-24 03:18 -------
Here is a reduced testcase:
template<class Base>
struct Factory0Arg
{
        template<class T> struct Factory { };
};
template<class T, class Al=class Factory0Arg<T>::Factory<T> >
struct thing {
                Al allocator;
};
thing<int> t;


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32029


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