blob: a6f8c1cf04c1b1e005c03bdbd4a642ae9facf78e [file] [log] [blame]
// RUN: %clang_cc1 %s -emit-llvm -o - -fexceptions | FileCheck %s
// PR7281
class A {
public:
~A();
};
class B : public A {
void ice_throw();
};
void B::ice_throw() {
throw *this;
}