blob: 0de6683f88d112306e43d855c210894f3ae4f38e [file] [log] [blame]
Anders Carlssonabea9512011-02-28 00:40:07 +00001// RUN: %clang_cc1 %s -emit-llvm-only -verify -fcxx-exceptions -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}