1 struct A {
2   double d;
3 };
4 
5 struct A f ();
6 
main()7 main ()
8 {
9   struct A a = f();
10 }
11