aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/scope4.C
blob: a4ae074c0df0707a8bce6ed14d7b07a84258d803 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// PR c++/46058

class StringLiterals {
public:
   static const char dec[];
};

template<class St, class Base, const char* name>
class NoValueCommand : public Base {
public:
};

template<class St, class Base>
class DecBasic : public NoValueCommand<St,Base,StringLiterals::dec> {
};