repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2018-06-05 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr63480.c
blob
e720e0ddd3d2d4808e644914b80080ac6a466448
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
7
struct
S
{
int
a
,
b
,
c
; }
s
= { };
8
9
void
10
foo
(
void
)
11
{
12
struct
S s
= { };
13
struct
S s2
= (
struct
S
){ };
14
}