From d1bcf59c9df22076d3e910fb7640707a5806ff48 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 5 Nov 2003 05:31:24 +0000 Subject: [PATCH] Add a dtor to ensure that they are called the right number of times. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9721 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/C++Frontend/2003-11-04-ArrayConstructors.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/test/C++Frontend/2003-11-04-ArrayConstructors.cpp b/test/C++Frontend/2003-11-04-ArrayConstructors.cpp index 24908110579..10097f6d12d 100644 --- a/test/C++Frontend/2003-11-04-ArrayConstructors.cpp +++ b/test/C++Frontend/2003-11-04-ArrayConstructors.cpp @@ -1,6 +1,7 @@ struct Foo { Foo(int); + ~Foo(); }; void foo() { struct { -- 2.34.1