1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
template <int I> struct A { }; template <typename T> struct B { typedef typename T::type type; static const type j = T::j; A<j> b; }; struct C { typedef int type; static const int j = 3; }; int i = B<C>::j;