PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / template / ttp17.C
blobcc9bc6ed46fe57b00bc3016281b895347ff54fd3
1 // { dg-options -fno-new-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>); // { dg-error "match" }