OSDN Git Service

PR c++/54858
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / scope4.C
1 // PR c++/46058
2
3 class StringLiterals {
4 public:
5    static const char dec[];
6 };
7
8 template<class St, class Base, const char* name>
9 class NoValueCommand : public Base {
10 public:
11 };
12
13 template<class St, class Base>
14 class DecBasic : public NoValueCommand<St,Base,StringLiterals::dec> {
15 };