PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / template / class1.C
blob96415fbc2254dfc1da8f9c6c6ae012b2a956bae1
1 extern const int a;
3 template <const int&> class X {};
5 template <typename> struct Y {
6     X<a> x;
7 };
9 template struct Y<int>;