1// PR c++/5118
2
3template <int Count>
4class d
5{
6public:
7  d()
8  {
9        myInt = Count;
10  }
11  int myInt;
12  virtual ~d() {}
13};
14
15volatile d<5> instD;
16