blob: 06a227cffd2d7c43d4d09b794f67fff67597dd8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* 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 42i; //~ ERROR expected `_|_` but found `int`
}
fn main() {
if (1 == 2) { forever(); }
}
|