OSDN Git Service

2010-05-09 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / init-empty-1.c
1 /* Test diagnostic for empty initializer braces.  Test with no special
2    options.  */
3 /* Origin: Joseph Myers <joseph@codesourcery.com> */
4 /* { dg-do compile } */
5 /* { dg-options "-std=gnu99" } */
6
7 struct s { int a; } x = { };
8
9 struct s *p = &(struct s){ };