Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr71700.c
blob: 80afd3809c3abd24135fb36b757ace9f41ba3112 [
file
] [
log
] [
blame
]
struct
S
{
signed
f0
:
16
;
unsigned
f1
:
1
;
};
int
b
;
static
struct
S c
[]
=
{{-
1
,
0
},
{-
1
,
0
}};
struct
S d
;
int
main
()
{
struct
S e
=
c
[
0
];
d
=
e
;
if
(
d
.
f1
!=
0
)
__builtin_abort
();
return
0
;
}