rt_gccstream/gcc/testsuite/gcc.c-torture/compile/nested-2.c

17 lines
175 B
C

/* PR 21105 */
void
CheckFile ()
{
char tagname[10];
char *a = tagname;
int validate ()
{
return (a == tagname + 4);
}
if (a == tagname)
validate ();
}