PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / template / crash93.C
blob696a04a07866872fef9b04066169a39efed43b87
1 // PR c++/40371
3 struct A
5   typedef void (&F)();
6   template<int> operator F();
7 };
9 void foo()
11   A()(); // { dg-error "no match" }