Add new test to verify that the array index, limit, and stride are
[official-gcc.git] / gcc / testsuite / gcc.dg / declspec-1.c
blobc19f1074ebb09d424abc21c9b496cbf3025441ab
1 /* Test declaration specifiers. Test cases that used to be handled in
2 a loop in grokdeclarator. */
3 /* Origin: Joseph Myers <jsm@polyomino.org.uk> */
4 /* { dg-do compile } */
5 /* { dg-options "-std=gnu89" } */
7 typedef int t;
9 /* These should all be diagnosed, but only once, not for every
10 identifier declared. */
11 struct s0 int x0, /* { dg-error "two or more data types" } */
12 x1;
14 char union u0 x2, /* { dg-error "two or more data types" } */
15 x3;
17 enum e0 struct s1 x4, /* { dg-error "two or more data types" } */
18 x5;
20 short short x6, /* { dg-error "duplicate" } */
21 x7;
23 t int x8, /* { dg-error "two or more data types" } */
24 x9;
26 long long long x10, /* { dg-error "long long long" } */
27 x11;