[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git] / gcc / testsuite / g++.dg / template / nontype7.C
blobba33b19db3388f8aa05a28ad9225f3b3d9658f63
1 // { dg-do compile }
2 // Origin: C++ standard, [temp.arg.nontype]/2
4 template<class T, char* p> struct X {
5   X();
6   X(const char* q) { /* ... */ }
7 };
9 char p[] = "Vivisectionist";
11 X<int,"Studebaker"> x1;    // { dg-error "string literal" }
12 X<int, p> x2;