OSDN Git Service

PR debug/44112
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / debug / template1.C
1 // PR c++/5118
2
3 template <int Count>
4 class d
5 {
6 public:
7   d() 
8   { 
9         myInt = Count;
10   }
11   int myInt;
12   virtual ~d() {}
13 };
14
15 volatile d<5> instD;