Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
parse
/
dce1.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 "" } */
}