aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/niklas01.C
blob: 6dcf9d3efaf295cbb965101f904f28bc2fe9aafa (plain)
1
2
3
4
5
6
// Build don't link: 

template <class T> struct A {};
template <class T> struct B : A<B<T> > {};

B<int> x;