aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/typedef-redef.c
blob: 3a60a773168a61a286ac8913b460140014ed689f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
typedef int  ok_t;
typedef int  ok_t;

typedef int  ko_t;
typedef long ko_t;

/*
 * check-name: typedef-redef
 *
 * check-error-start
typedef-redef.c:5:14: error: symbol 'ko_t' redeclared with different type (originally declared at typedef-redef.c:4) - different type sizes
 * check-error-end
 */