blob: 2bc03674ccd16f515ef35ccc071f036d21bc947b [file] [log] [blame]
/* { dg-do compile } */
char a;
int c;
unsigned b ();
unsigned
setjmp ()
{
}
static void
d ()
{
if (b ())
c = 3;
}
void
e ()
{
d ();
a && ({ setjmp (); });
}