Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / redecl-14.c
blobed196106361c75fc505b9b7e5a67e2de9868e003
1 /* Some incompatible external linkage declarations were not diagnosed.
2 Bug 21342. Test type in inner scope is correct. */
3 /* Origin: Joseph Myers <joseph@codesourcery.com> */
4 /* { dg-do compile } */
5 /* { dg-options "" } */
7 typedef int IA[];
8 typedef int IA5[5];
9 typedef IA *IAP;
10 typedef IA5 *IA5P;
11 extern IAP a[];
12 void
13 f (void)
16 extern IA5P a[];
17 sizeof (*a[0]);
19 extern IAP a[];
20 extern IAP a[5];
21 sizeof (*a[0]); /* { dg-error "error: invalid application of 'sizeof' to incomplete type 'IA'" } */