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