PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / template / crash110.C
blobd0a4b4ddcb8bc0eece2b9f73a8abd5268fa26874
1 // PR c++/51402
3 template<void> struct A   // { dg-error "not a valid type" }
5   template<int,int> struct B {};
6   template<int N> struct B<N,N> {};
7 };