mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-24 11:09:12 +00:00
10 lines
167 B
Rust
10 lines
167 B
Rust
fn main() {
|
|
let a = if true {
|
|
0
|
|
} else if false {
|
|
//~^ ERROR `if` may be missing an `else` clause
|
|
//~| expected integer, found `()`
|
|
1
|
|
};
|
|
}
|