blob: 6c477d303136a0cfd32e94f3ef5c488b0ab75e64 [file] [log] [blame]
// { dg-do assemble }
// { dg-options "-g -O -fkeep-inline-functions" }
class c {
public:
~c () { };
};
int
foo (const c& lhs)
{
c str (lhs);
return 0;
}