mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-10 00:55:43 +00:00
7 lines
101 B
Rust
7 lines
101 B
Rust
fn forever2() -> i32 {
|
|
let x: i32 = loop { break }; //~ ERROR mismatched types
|
|
x
|
|
}
|
|
|
|
fn main() {}
|