1// PR c++/9167
2// { dg-options "-finline" }
3
4struct A {
5  ~A();
6  A f(A) { }
7};
8
9
10void f(void)
11{
12  A a;
13  a.f(a);
14}
15