blob: 621a0511a81084d8ad88b0f4a028335833fda140 [file] [log] [blame]
// { dg-do assemble }
// Origin: Jean-Marc Bourguet <bourguet@cadence.com>
class foo {
public:
foo() {};
void throwMe () {
throw *this; // { dg-error "" } cannot be used in throw-expression
};
virtual void test () = 0;
};