PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / init-empty-3.c
blob136931867c99a1b12dff543806abd88b4db30911
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 "ISO C forbids empty initializer braces" } */
9 struct s *p = &(struct s){ }; /* { dg-error "ISO C forbids empty initializer braces" } */