blob: f87657fdcc01c05c22eae71533d0b357320c446b [file] [log] [blame]
Eli Friedmanc26a9ae2010-06-03 23:31:53 +00001// RUN: %clang_cc1 %s -emit-llvm-only -verify -fexceptions
Eli Friedman5ed9b932010-06-03 20:39:03 +00002// PR7281
3
4class A {
5public:
6 ~A();
7};
8class B : public A {
9 void ice_throw();
10};
11void B::ice_throw() {
12 throw *this;
13}