]> granicus.if.org Git - clang/commitdiff
Add a regression test for PR16370 next to the dr7 test case since they
authorChandler Carruth <chandlerc@gmail.com>
Thu, 20 Jun 2013 07:06:39 +0000 (07:06 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Thu, 20 Jun 2013 07:06:39 +0000 (07:06 +0000)
seem closely related. (I'm happy to move this if others have a better
idea of where to put it.)

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@184402 91177308-0d34-0410-b5e6-96231b3b80d8

test/CXX/drs/dr0xx.cpp

index 967a2baaa3052f553dab401b9242e79465caf645..7df3d7eb6c82792b2ab100260b146bf8601e2a5e 100644 (file)
@@ -66,6 +66,18 @@ namespace dr7 { // dr7: no
 
   class X { ~X(); }; // expected-note {{here}}
   class Y : X { ~Y() {} }; // expected-error {{private destructor}}
+
+  namespace PR16370 { // This regressed the first time DR7 was fixed.
+    struct S1 { virtual ~S1(); };
+    struct S2 : S1 {};
+    struct S3 : S2 {};
+    struct S4 : virtual S2 {};
+    struct S5 : S3, S4 {
+      S5();
+      ~S5();
+    };
+    S5::S5() {}
+  }
 }
 
 namespace dr8 { // dr8: dup 45