blob: 1e9711686572cdc0d31a9990049b94bcf2046d41 [file] [log] [blame]
// DR 1710 - Missing template keyword in class-or-decltype
template<typename T> struct S {
void fn(typename T::template B<int>::template C<int>);
void fn2(typename T::B<int>::template C<int>);
void fn3(typename T::template B<int>::C<int>);
void fn4(typename T::B<int>::C<int>);
};