Sign in
kernel
/
pub
/
scm
/
linux
/
kernel
/
git
/
palmer
/
sparse
/
f0e6938bffe0e21cde6e60ff63ed8877d4d04e26
/
.
/
validation
/
anon-union.c
blob: 487f957b8eb181ab057a81179a5afe143e196ac6 [
file
] [
log
] [
blame
]
struct
s
{
union
{
int
val
;
};
};
static
struct
s foo
=
{
.
val
=
5
,
};
/*
* check-name: test anonymous union initializer
*/