Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr87053.c
blob: 0170731860b132074b7ce5b96758135cf3465c1a [
file
] [
log
] [
blame
]
/* PR middle-end/87053 */
const
union
{
struct
{
char
x
[
4
];
char
y
[
4
];
};
struct
{
char
z
[
8
];
};
}
u
=
{{
"1234"
,
"567"
}};
int
main
()
{
if
(
__builtin_strlen
(
u
.
z
)
!=
7
)
__builtin_abort
();
}