PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / template / ref8.C
bloba2fc8471996c1adeb057a9299ff4d22353c8d141
1 // PR c++/60222
3 template<int&> struct A
5   template<typename> struct B;
7   template<typename T> struct B<T*> {};
8 };