blob: 38dcb02a7f670d207c7970be4dc3f68a20efd924 [file] [log] [blame]
/* APPLE LOCAL testsuite nested functions */
// { dg-options "-fnested-functions" }
extern int printf (const char *, ...);
int foo() {
int yd;
float in[1][yd];
void bar() {
printf("%p\n",in[0]);
}
}