Sync usage with man page.
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / gcc.dg / redecl-13.c
blob54be4dbc2ba315d8cb88e28dce72257a48facb9a
1 /* Some incompatible external linkage declarations were not diagnosed.
2 Bug 21342. */
3 /* Origin: Joseph Myers <joseph@codesourcery.com> */
4 /* { dg-do compile } */
5 /* { dg-options "" } */
7 extern int a[];
8 void f(void) { extern int a[10]; } /* { dg-error "error: previous declaration of 'a' was here" } */
9 extern int a[5]; /* { dg-error "error: conflicting types for 'a'" } */