2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / debug / template1.C
blob279b4b17337c58ab8d00afdcce0e8da39874ec75
1 // PR c++/5118
3 template <int Count>
4 class d
6 public:
7   d() 
8   { 
9         myInt = Count;
10   }
11   int myInt;
12   virtual ~d() {}
15 volatile d<5> instD;