1 // { dg-do assemble  }
2 // { dg-options "-g -O -fkeep-inline-functions" }
3 
4 class c {
5 public:
~c()6   ~c () { };
7 };
8 
9 int
foo(const c & lhs)10 foo (const c& lhs)
11 {
12   c str (lhs);
13   return 0;
14 }
15