mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-03 02:25:51 +00:00
7 lines
164 B
Rust
7 lines
164 B
Rust
fn main() {
|
|
let a = if true { true };
|
|
//~^ ERROR `if` may be missing an `else` clause [E0317]
|
|
//~| expected `bool`, found `()`
|
|
println!("{}", a);
|
|
}
|