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