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