]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/redecl-16.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / redecl-16.c
CommitLineData
317a9ac3
RH
1/* PR 21502 */
2/* { dg-do compile } */
3/* { dg-options "" } */
4
5typedef int IA[];
6typedef int IA5[5];
7typedef int IA10[10];
8typedef IA *IAP;
9typedef IA5 *IA5P;
10typedef IA10 *IA10P;
11extern IAP a[];
12void
13f (void)
14{
15 extern IA5P a[];
16}
71205d17 17IAP a[] = { 0 }; /* { dg-message "note: previous definition" } */
317a9ac3 18extern IA10P a[]; /* { dg-error "conflicting types" } */