PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / template / scope4.C
bloba4ae074c0df0707a8bce6ed14d7b07a84258d803
1 // PR c++/46058
3 class StringLiterals {
4 public:
5    static const char dec[];
6 };
8 template<class St, class Base, const char* name>
9 class NoValueCommand : public Base {
10 public:
13 template<class St, class Base>
14 class DecBasic : public NoValueCommand<St,Base,StringLiterals::dec> {