aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/const1.C
blob: 8ac8a51bf9d93c7cccfccb984aa76c4a27192346 (plain)
1
2
3
4
// 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 };