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

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

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