Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.law / ctors1.C
blob85a4be6d09c5e0b706022eb03e137ab85c384c54
1 // { dg-do assemble  }
2 // GROUPS passed constructors
3 // ctor file
4 // From: rac@qedinc.com (Robert Clark)
5 // Date:     Tue, 14 Dec 93 10:45:50 PST
6 // Subject:  bug in g++ 2.5.7 Array of objects
7 // Message-ID: <9312141845.AA09188@annapurna.qedinc.com>
10 class POOL {
11 public:
12   POOL();
15 struct VAL_LIST {
16   POOL   pool[2];
19 VAL_LIST baz;