1/* Test attempt to redefine 'id' in an incompatible fashion.  */
2/* { dg-do compile } */
3
4typedef int id;  /* { dg-error "conflicting types for .id." } */
5/* { dg-message "previous declaration of .id. was here" "" { target *-*-* } 0 } */
6
7id b;
8