aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/declspec-7.c
blob: 370172468a87767d8f8f8f9cee6bef3b98beeef4 (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
34
35
36
37
38
39
/* Test declaration specifiers.  Test checks on storage class
   specifiers that can be made at parse time rather than for each
   declarator.  Note that __thread is tested in
   gcc.dg/tls/diag-*.c.  */
/* Origin: Joseph Myers <jsm@polyomino.org.uk> */
/* { dg-do compile } */
/* { dg-options "" } */

/* Duplicate specifiers.  */

inline inline void f0 (void),
  f1 (void);

static static int a, /* { dg-error "duplicate 'static'" } */
  b;

extern extern int c, /* { dg-error "duplicate 'extern'" } */
  d;

typedef typedef int e, /* { dg-error "duplicate 'typedef'" } */
  f;

void
h (void)
{
  auto auto int p, /* { dg-error "duplicate 'auto'" } */
    q;

  register register int r, /* { dg-error "duplicate 'register'" } */
    s;
}

/* Multiple specifiers.  */

static extern int x, /* { dg-error "multiple storage classes in declaration specifiers" } */
  y;

extern typedef long z, /* { dg-error "multiple storage classes in declaration specifiers" } */
  w;