rt_gccstream/gcc/testsuite/g++.dg/debug/template1.C

16 lines
150 B
C

// PR c++/5118
template <int Count>
class d
{
public:
d()
{
myInt = Count;
}
int myInt;
virtual ~d() {}
};
volatile d<5> instD;