rt_gccstream/gcc/testsuite/g++.old-deja/g++.other/inline10.C

19 lines
182 B
C

// { dg-do assemble }
// { dg-options "-O2" }
// Origin: Mark Mitchell <mark@codesourcery.com>
struct S
{
};
inline const S f ()
{
return S ();
}
void g ()
{
S s;
f ();
}