]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/init-empty-1.c
replace ISL with isl
[thirdparty/gcc.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){ };