2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / const1.C
blob6c6182284ea31627cca811b82142d4843e37e00a
1 // { dg-do assemble  }
2 template <class T> struct B { static const int i = 3; };
3 template <class T> struct A { static const int i = B<T>::i; };
4 enum { i = A<int>::i };