From-SVN: r47672
This commit is contained in:
Jakub Jelinek 2001-12-05 15:11:14 +01:00
parent f79349c75c
commit a3315b5399

View File

@ -0,0 +1,7 @@
extern struct S x[];
struct S { int i; };
char *bar (const struct S *);
void foo (void)
{
bar (x);
}