Daily bump.
[official-gcc.git] / gcc / testsuite / g++.dg / tree-ssa / aggregate1.C
blob3f30a73b4e0a0580ef9fab74601b29212415fd98
1 // Test that we don't bother building a cleanup for the last aggregate element.
2 // { dg-additional-options -fdump-tree-gimple }
3 // { dg-final { scan-tree-dump-not {A::~A \(&b\.a} "gimple" } }
5 struct A
7   A(int);
8   ~A();
9 };
11 struct B
13   A a;
16 int main()
18   B b = { 1 };