mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +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
|
|
};
|
|
}
|