Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr42570.c
blob: 99a8d8072867b8f957e82c582f811c4c492b5f71 [
file
] [
log
] [
blame
]
typedef
unsigned
char
uint8_t
;
uint8_t
foo
[
1
][
0
];
extern
void
abort
(
void
);
int
main
()
{
if
(
sizeof
(
foo
)
!=
0
)
abort
();
return
0
;
}