aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/init-empty-2.c
blob: 597d72d374b664ade1533f89baf26863ab0f2e03 (plain)
1
2
3
4
5
6
7
8
9
/* Test diagnostic for empty initializer braces.  Test with
   -pedantic.  */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
/* { dg-do compile } */
/* { dg-options "-std=gnu99 -pedantic" } */

struct s { int a; } x = { }; /* { dg-warning "ISO C forbids empty initializer braces" } */

struct s *p = &(struct s){ }; /* { dg-warning "ISO C forbids empty initializer braces" } */