// PR c++/23896

template <int> struct X {}; 
 
template <typename T> struct length { 
  static const int value = 2; 
}; 
 
template <typename T> void foo () { 
  sizeof(X<length<T>::value>); 
} 
 
template void foo<int>(); 


syntax highlighted by Code2HTML, v. 0.9.1