aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/Woverride-init-3.c
blob: 3fec7385d047a41d410a1fdcc8fce6c85d59179f (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
/* Test for warnings for overriding designated initializers: not
   warned for with -Wextra -Wno-override-init.  Bug 24010.  */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
/* { dg-do compile } */
/* { dg-options "-Wextra -Wno-override-init" } */

struct s { int a; int b; int c; };
union u { char a; long long b; };

struct s s0 = {
  .a = 1,
  .b = 2,
  .a = 3,
  4,
  5
};

union u u0 = {
  .a = 1,
  .b = 2,
  .a = 3
};

int a[5] = {
  [0] = 1,
  [1] = 2,
  [0] = 3,
  [2] = 4
};