Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / debug / redecl-5.c
blobb915b3fdf5eb106aaf15eada14a84eba9736e27d
1 /* Test for multiple declarations and composite types, as in bug
2 13801. Test types saved from outer scopes are up to date. Debug
3 test. */
4 /* Origin: Joseph Myers <jsm@polyomino.org.uk> */
5 /* { dg-do compile } */
6 /* { dg-options "" } */
8 int x[];
10 void
11 f (void)
13 extern int x[];
16 int x[10];
18 void
19 g (void)
21 int x;
23 extern int x[10];
27 void
28 h (void)
30 sizeof (x);