1 // DR 1710 - Missing template keyword in class-or-decltype
2 
3 template<typename T> struct S {
4   void fn(typename T::template B<int>::template C<int>);
5   void fn2(typename T::B<int>::template C<int>);
6   void fn3(typename T::template B<int>::C<int>);
7   void fn4(typename T::B<int>::C<int>);
8 };
9