blob: 6c6182284ea31627cca811b82142d4843e37e00a [file] [log] [blame]
// { dg-do assemble }
template <class T> struct B { static const int i = 3; };
template <class T> struct A { static const int i = B<T>::i; };
enum { i = A<int>::i };