Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git] / gcc / testsuite / g++.dg / torture / pr32950.C
blob8d64296e40b6079770e3581e447fa4d8bd1f56ab
1 /* { dg-do compile } */
3 struct A
5   __complex__ double c;
6 };
8 struct B
10   A a;
11   B(A x) : a(x) {}
12   void foo();
15 void bar()
17   B b = A();
18   B(b).foo();