diff options
Diffstat (limited to 'clang/test/CodeGenCXX/throw-expression-dtor.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/throw-expression-dtor.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/clang/test/CodeGenCXX/throw-expression-dtor.cpp b/clang/test/CodeGenCXX/throw-expression-dtor.cpp new file mode 100644 index 0000000..0de6683 --- /dev/null +++ b/clang/test/CodeGenCXX/throw-expression-dtor.cpp @@ -0,0 +1,13 @@ +// RUN: %clang_cc1 %s -emit-llvm-only -verify -fcxx-exceptions -fexceptions +// PR7281 + +class A { +public: + ~A(); +}; +class B : public A { + void ice_throw(); +}; +void B::ice_throw() { + throw *this; +} |