Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
ext
/
c99struct1.C
blob: bd5be2dbbf54605afa05b3cdee9d5fe3b7d4c55e [
file
] [
log
] [
blame
]
// { dg-options "" }
// C99 anon struct variable with array accesses.
struct
s
{
int
a
[
1
];
};
void
foo5
(
void
)
{
int
i
=
((
struct
s
)
{
{
0
}
}).
a
[
0
];
}