1 /* Test for multiple declarations and composite types.  */
2 
3 /* Origin: Joseph Myers <jsm@polyomino.org.uk> */
4 /* { dg-do compile } */
5 /* { dg-options "" } */
6 
7 static int y[];
8 void
g(void)9 g (void)
10 {
11   extern int y[1];
12 }
13