1// PR c++/15554
2
3template <int n> struct T1 { enum { N = 3 }; };
4template <int n> struct T2 { enum { N = 3, N1 = T1<N>::N }; };
5
6