This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/32029] Internal Compiler Error on instantiation of template parameter
- From: "pinskia at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 24 May 2007 02:18:12 -0000
- Subject: [Bug c++/32029] Internal Compiler Error on instantiation of template parameter
- References: <bug-32029-14583@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- 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