blob: 279b4b17337c58ab8d00afdcce0e8da39874ec75 [file] [log] [blame]
// PR c++/5118
template <int Count>
class d
{
public:
d()
{
myInt = Count;
}
int myInt;
virtual ~d() {}
};
volatile d<5> instD;