Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / init-empty-3.c
blob792d1712f3f2cc4294a3fa78319fb8f2af36a89b
1 /* Test diagnostic for empty initializer braces. Test with
2 -pedantic-errors. */
3 /* Origin: Joseph Myers <joseph@codesourcery.com> */
4 /* { dg-do compile } */
5 /* { dg-options "-std=gnu99 -pedantic-errors" } */
7 struct s { int a; } x = { }; /* { dg-error "error: ISO C forbids empty initializer braces" } */
9 struct s *p = &(struct s){ }; /* { dg-error "error: ISO C forbids empty initializer braces" } */