blob: 573149fdd317f26f8cff81711ad8207b33c6acf7 [file] [log] [blame]
// Build don't link:
// Origin: Nathan Sidwell <nathan@codesourcery.com>
// Special g++ Options: -O2
struct A
{
A (int) { }
~A () { }
int get () const { return 0; }
};
void f (const A &s) {
f (s.get ());
}