bitint: Fix up lowering of COMPLEX_EXPR [PR115544]
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / anon8.C
blobfb26d73132e2718c061a66d0ebc9cfb8b378a4cf
1 // { dg-do assemble  }
3 struct B
5   int a;
6   B & operator= (const B &);
7 };
9 struct A
11   union {
12     int a;
13   };
14   B b;
17 A x;
19 void foo (const A &y)
21   x = y;