PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / template / const4.C
blob6552ec6e9686154968c0fa27ea76f2ff67900201
1 // PR c++/48657
3 template<unsigned> struct A { typedef int T; };
5 template<unsigned> void f()
7   const unsigned D = 4;
8   A<D>::T t;