c++: DR1710, template keyword in a typename-specifier [PR94057]
[official-gcc.git] / gcc / testsuite / g++.dg / template / dependent-name13.C
blob1e9711686572cdc0d31a9990049b94bcf2046d41
1 // DR 1710 - Missing template keyword in class-or-decltype
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 };