From: Chris Lattner Date: Wed, 5 Nov 2003 05:31:24 +0000 (+0000) Subject: Add a dtor to ensure that they are called the right number of times. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=d1bcf59c9df22076d3e910fb7640707a5806ff48;p=oota-llvm.git 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 --- 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 {