PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / template / ttp17a.C
blob3bd0b0c42df946420acdb03d62c78109d3d76923
1 // { dg-options -fnew-ttp-matching }
3 template <template <typename> class C>
4 void f(C<double>) {}
6 template <typename T, typename U = int>
7 struct S {};
9 template void f(S<double>);