blob: e4c83700c989b4630ceca1709e92f2bf999c6e08 [file] [log] [blame]
// { dg-do assemble }
// { dg-options "-O1 -fno-inline-functions -Wno-return-type" }
struct A
{
~A ();
};
bool foo ();
int i;
int j;
A bar ()
{
for (i = 0; i < 1; ++i)
if (j)
{
A tmp;
return tmp;
}
}