OSDN Git Service

PR c++/20669
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / memclass16.C
1 // { dg-do assemble  }
2
3 template <class Q>
4 class A {
5 public:
6  
7         typedef enum { X, Y } B;
8         template <B c> class Traits{ };
9 };
10
11
12 template class A<int>;
13 template class A<double>::Traits<A<double>::X>;