blob: e86d11004829d8c6263787b3c4497699f41f130c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/* { dg-do "compile" } */
/* { dg-options "-std=gnu23" } */
typedef struct q { int x; } q_t;
typedef struct q q_t;
typedef struct q { int x; } q_t;
typedef struct q q_t;
typedef struct q { int x; } q_t;
typedef struct r r_t;
typedef struct r r_t;
typedef struct r r_t;
typedef struct r r_t;
typedef struct r r_t;
extern struct s { int x; } s;
extern struct s s;
extern struct s { int x; } s;
extern struct s s;
extern struct s { int x; } s;
struct t { int x; };
struct t;
struct t { int x; };
struct t;
struct t { int x; };
typedef enum e { E = 1 } e_t;
typedef enum e_t; /* { dg-warning "useless storage class specifier in empty declaration" } */
typedef enum e { E = 1 } e_t;
typedef enum e_t; /* { dg-warning "empty declaration with storage class specifier does not redeclare tag" } */
typedef enum e { E = 1 } e_t;
|