blob: c72782b10ee32bf92aaeee57de870e07a621c944 [file] [log] [blame]
// PR c++/14122
extern const char str[];
template <const char* P>
struct A
{
template <const char* R> void foo();
};
template class A<str>;