aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/c99-typedef-1.c
blob: 8aacb3bc2d71c91159c42558ddb57d7b9a373ef3 (plain)
1
2
3
4
5
6
/* 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" } */