blob: 5bfdbae7afcd8c2a73a31f907d7880d27a4f3e35 [file] [log] [blame]
// Build don't link:
// Special g++ Options: -O2
// Origin: Mark Mitchell <mark@codesourcery.com>
struct S
{
};
inline const S f ()
{
return S ();
}
void g ()
{
S s;
f ();
}