URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [lookup/] [koenig12.C] - Rev 693
Compare with Previous | Blame | View Log
// PR c++/41305
// We got into infinite recursion instantiating the B<U> series.
template <class T> struct A { };
template <class T, class U = A<T> > struct B;
template <class T> struct C { };
template <class T, class U> struct B: C<B<U> >
{
friend void f(B) { }
};
B<int> b;
int main()
{
f(b);
}