Add a dtor to ensure that they are called the right number of times.
[oota-llvm.git] / test / C++Frontend / 2003-11-04-ArrayConstructors.cpp
1
2 struct Foo { 
3   Foo(int); 
4   ~Foo();
5 };
6 void foo() {
7   struct {
8     Foo name;
9   } Int[] =  { 1 };
10 }