blob: 9f7bc39a3ba0f13fc701c317e89bc4a124bfded6 [file] [log] [blame]
// Build don't link:
// Special g++ Options: -g -O -fkeep-inline-functions
class c {
public:
~c () { };
};
int
foo (const c& lhs)
{
c str (lhs);
return 0;
}