OSDN Git Service

2014-02-26 Fabien Chene <fabien@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / nontype7.C
1 // { dg-do compile }
2 // Origin: C++ standard, [temp.arg.nontype]/2
3
4 template<class T, char* p> struct X {
5   X();
6   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
14 // { dg-bogus "" "additional errors" { xfail *-*-* } 11 }
15