1 struct A {
2   A (int, int);
3   void f ();
4 };
5 
f(int a)6 void f (int a) {
7   A (a, a).f ();
8 }
9