Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
struct-ini-4.c
blob: 3342439e54d26d456828d65e6045075a7860f553 [
file
] [
log
] [
blame
]
struct
s
{
int
a
[
3
];
int
c
[
3
];
};
struct
s s
=
{
c
:
{
1
,
2
,
3
}
};
main
()
{
if
(
s
.
c
[
0
]
!=
1
)
abort
();
exit
(
0
);
}