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