xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenCXX/throw-expression-dtor.cpp (revision eda6f5931d42c77e1480347b1fc3eef2f8d33806)
1 // RUN: %clang_cc1 %s -emit-llvm-only -verify -fcxx-exceptions -fexceptions
2 // expected-no-diagnostics
3 // PR7281
4 
5 class A {
6 public:
7     ~A();
8 };
9 class B : public A {
10     void ice_throw();
11 };
12 void B::ice_throw() {
13     throw *this;
14 }
15