Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.jason / aggregate.C
blobf739e56d0f2375561c3baeb51214b218ff4a7d43
1 // { dg-do run  }
2 struct A { int i; };
4 int main()
6   A a1 = { 42 };
7   A a2 (a1);
8   A a3 = { 137 };
9   a1 = a3;
11   if (a1.i == 137 && a2.i == 42 && a3.i == 137)
12     return 0;
13   return 1;