2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / niklas01b.C
blobe17b929355f36944ca918dca3c6a480403a44a17
1 // { dg-do assemble  }
3 template <class T> struct A { T *t; inline A() { t = 0; } };
4 template <class T> struct B : A<B<T> > { int x; inline B() { x = 3; } };
6 B<int> x;