1 2 3 4 5 6
fn forever2() -> i32 { let x: i32 = loop { break }; //~ ERROR mismatched types x } fn main() {}