1 // { dg-do compile }
2 // Origin: C++ standard, [temp.arg.nontype]/2
3 
4 template<class T, char* p> struct X {
5   X();
XX6   X(const char* q) { /* ... */ }
7 };
8 
9 char p[] = "Vivisectionist";
10 
11 X<int,"Studebaker"> x1;    // { dg-error "string literal" }
12 X<int, p> x2;
13