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

20 lines
187 B
C

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