index
:
sparse/sparse-dev.git
Sparse's development tree with unstable git history
Chris Li
about
summary
refs
log
tree
commit
diff
stats
homepage
path:
root
/
validation
/
bad-array-designated-initializer.c
blob: 636fa6346465461279c47f93ff1af8a084cc0d82 (
plain
)
1
2
3
4
static
int
a
[]
=
{
[
0
]
=
0
,
// OK
[
\
0
]
=
1
,
// KO
};