aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/Wcxx-compat-17.c
blob: 78760d641ffadeaa6e9ae5c1eec235c586cb892e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* { dg-do compile } */
/* { dg-options "-Wc++-compat" } */
const int v1;			/* { dg-warning "invalid in C\[+\]\[+\]" } */
const char * const v2;		/* { dg-warning "invalid in C\[+\]\[+\]" } */
struct s { int f1; int f2; };
const struct s v3;		/* { dg-warning "invalid in C\[+\]\[+\]" } */
const int v4 = 1;
const char * const v5 = 0;
const struct s v6 = { 0, 0 };
const struct s v7 = { 0 };
void
f()
{
  const int v11;		/* { dg-warning "invalid in C\[+\]\[+\]" } */
  const char * const v12;	/* { dg-warning "invalid in C\[+\]\[+\]" } */
  const struct s v13;		/* { dg-warning "invalid in C\[+\]\[+\]" } */
  const int v14 = 1;
  const char * const v15 = 0;
  const struct s v16 = { 0, 0 };
  const struct s v17 = { 0 };
}