blob: 8ac8a51bf9d93c7cccfccb984aa76c4a27192346 [file] [log] [blame]
// Build don't link:
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 };