1 // PR c++/47705
2 
3 template<char const * const x> class Something { };
4 
5 extern char const xyz;
6 
7 class SomethingElse:public Something<xyz> { }; // { dg-error "" }
8