rust/src/test/compile-fail/loop-does-not-diverge.rs
2012-04-06 06:59:00 -07:00

12 lines
245 B
Rust

/* Make sure a loop{} with a break in it can't be
the tailexpr in the body of a diverging function */
fn forever() -> ! {
loop {
break;
}
ret 42; //! ERROR expected `_|_` but found `int`
}
fn main() {
if (1 == 2) { forever(); }
}