blob: 610257436b3bd1b012fc1f11c4a6867c6fdbd858 [file] [log] [blame]
// { dg-do compile }
// { dg-options "-O -fkeep-inline-functions -fno-use-cxa-atexit" }
void foo ();
struct S
{
~S ()
{
foo ();
}
};
S s;