Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
930916-1.c
blob: fc52e333ebe59a6adbc932e89265cef7534875e3 [
file
] [
log
] [
blame
]
/* { dg-additional-options "-std=gnu89" } */
f
(
n
)
unsigned
n
;
{
if
((
int
)
n
>=
0
)
abort
();
}
main
()
{
unsigned
x
=
~
0
;
f
(
x
);
exit
(
0
);
}