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

template <class T> struct A { T *t; inline A() { t = 0; } };
template <class T> struct B : A<B<T> > { int x; inline B() { x = 3; } };

B<int> x;