Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr49768.c
blob: 85bc9d2a06f2f4eeb0a2c554db4f0800cbebc448 [
file
] [
log
] [
blame
]
/* PR tree-optimization/49768 */
extern
void
abort
(
void
);
int
main
()
{
static
struct
{
unsigned
int
:
1
;
unsigned
int
s
:
1
;
}
s
=
{
.
s
=
1
};
if
(
s
.
s
!=
1
)
abort
();
return
0
;
}