PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / template / array4.C
blobc72782b10ee32bf92aaeee57de870e07a621c944
1 // PR c++/14122
3 extern const char str[];
5 template <const char* P>
6 struct A
8   template <const char* R>  void foo();
9 };
11 template class A<str>;