blob: e88a4337db4faaaeb68609590c3d47b448a96b28 [file] [log] [blame]
// Origin: Jean-Marc Bourguet <bourguet@cadence.com>
// Build don't link:
class foo {
public:
foo() {};
void throwMe () {
throw *this; // ERROR - cannot be used in throw-expression
};
virtual void test () = 0;
};