comparison gcc/testsuite/g++.dg/template/dependent-name13.C @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents
children
comparison
equal deleted inserted replaced
145:1830386684a0 152:2b5abeee2509
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 };