PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / template / typename20.C
blobd5bd51f356d48ca8baacca990679c68f101f2272
1 // PR c++/56543
3 template <typename>
4 struct S;
6 template <typename T>
7 struct U
9   typedef typename S <T>::template V <> W;
10   S <W> x;