gcc/gcc/testsuite/gcc.dg/c99-typedef-1.c

7 lines
260 B
C

/* Test typedef redeclaration not permitted in C99. */
/* { dg-do compile } */
/* { dg-options "-std=iso9899:1999 -pedantic-errors" } */
typedef int TI; /* { dg-message "previous declaration" } */
typedef int TI; /* { dg-error "redefinition of typedef" } */