blob: cb4a6c69bdddfdd968f44762fef532f9a6c1b31b [file] [log] [blame]
Anders Carlssonabea9512011-02-28 00:40:07 +00001// RUN: %clang_cc1 %s -emit-llvm-only -verify -fcxx-exceptions -fexceptions
Andy Gibbs8e8fb3b2012-10-19 12:44:48 +00002// expected-no-diagnostics
Eli Friedman5ed9b932010-06-03 20:39:03 +00003// PR7281
4
5class A {
6public:
7 ~A();
8};
9class B : public A {
10 void ice_throw();
11};
12void B::ice_throw() {
13 throw *this;
14}