Add a dtor to ensure that they are called the right number of times.
authorChris Lattner <sabre@nondot.org>
Wed, 5 Nov 2003 05:31:24 +0000 (05:31 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 5 Nov 2003 05:31:24 +0000 (05:31 +0000)
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

index 249081105794fa345cda910437622d891ca94620..10097f6d12df525b6f4640281e87215a714309ff 100644 (file)
@@ -1,6 +1,7 @@
 
 struct Foo { 
   Foo(int); 
+  ~Foo();
 };
 void foo() {
   struct {