]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr63480.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr63480.c
CommitLineData
84937de2
MP
1/* PR c/63480 */
2/* { dg-do compile } */
3/* { dg-options "-Wmissing-field-initializers" } */
4
5/* Test that we don't warn about initializing with { }. */
6
7struct S { int a, b, c; } s = { };
8
9void
10foo (void)
11{
12 struct S s = { };
13 struct S s2 = (struct S){ };
14}