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