blob: a22ca45bbd71f070b5e3640232227f048ed36a9a [file] [log] [blame]
// Build don't link:
// Special g++ Options: -fexceptions -O -g
// prms-id: 11142
class RWxmsg {
public:
RWxmsg();
virtual ~RWxmsg();
};
class RWTHRInternalError : public RWxmsg {
public:
virtual ~RWTHRInternalError() { }
};
void setCount(int count) {
throw RWTHRInternalError();
}