Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / gcc.dg / redecl-18.c
blobf96bbe750f9f100413a495f0cb290def779613c6
1 /* Test redeclaration in an inner scope, with an incomplete type, of a
2 file-scope initialized array shadowed in an intermediate scope (bug
3 88584). */
4 /* { dg-do compile } */
5 /* { dg-options "" } */
7 int a[1] = { 0 };
9 void
10 f (void)
12 int a;
14 extern int a[];
15 sizeof (a); /* { dg-error "incomplete" } */