]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/pr64709.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr64709.c
1 /* PR c/64709 */
2 /* { dg-do compile } */
3 /* { dg-options "-Wmissing-field-initializers" } */
4
5 struct S { int a, b; };
6 void
7 foo (void)
8 {
9 struct S s[] = { { 1, 2 }, { 0 } }; /* { dg-bogus "missing initializer for field" } */
10 }