1// PR c++/14122
2
3extern const char str[];
4
5template <const char* P>
6struct A
7{
8  template <const char* R>  void foo();
9};
10
11template class A<str>;
12