libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / redecl-12.c
blob9922cf49fc589e2356b9c837d9cb49e44831a4a9
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[]; extern int a[10]; } /* { dg-message "note: previous declaration of 'a'" "note" } */
9 extern int a[5]; /* { dg-error "conflicting types for 'a'" } */