Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
20031111-1.c
blob: f4de52257bcba5ffbe4389a30ad5bb775627e873 [
file
] [
log
] [
blame
]
/* Make sure that dead code isn't eliminated too early, avoiding
detection of errors. */
/* { dg-do compile } */
void
foo
(
void
)
{
if
(
0
)
break
;
/* { dg-error "" } */
if
(
1
)
;
else
continue
;
/* { dg-error "" } */
}