OSDN Git Service

PR c++/47705
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / array4.C
1 // PR c++/14122
2
3 extern const char str[];
4
5 template <const char* P>
6 struct A
7 {
8   template <const char* R>  void foo();
9 };
10
11 template class A<str>;