Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.mike / p11142.C
blob9fee770f8740f79c54a6360824012a1338fc4460
1 // { dg-do assemble  }
2 // { dg-options "-fexceptions -O -g" }
3 // prms-id: 11142
5 class RWxmsg {
6 public:
7   RWxmsg();
8   virtual ~RWxmsg();
9 };
11 class RWTHRInternalError : public RWxmsg {
12 public:
13   virtual ~RWTHRInternalError() { }
16 void setCount(int count) {
17   throw RWTHRInternalError();