URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [redecl-16.c] - Rev 298
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR 21502 */ /* { dg-do compile } */ /* { dg-options "" } */ typedef int IA[]; typedef int IA5[5]; typedef int IA10[10]; typedef IA *IAP; typedef IA5 *IA5P; typedef IA10 *IA10P; extern IAP a[]; void f (void) { extern IA5P a[]; } IAP a[] = { 0 }; /* { dg-message "note: previous definition" } */ extern IA10P a[]; /* { dg-error "conflicting types" } */
Go to most recent revision | Compare with Previous | Blame | View Log