10 lines
163 B
Rust
10 lines
163 B
Rust
fn main() {
|
|
let a = if true {
|
|
0
|
|
} else if false {
|
|
//~^ ERROR if may be missing an else clause
|
|
//~| expected `()`, found integer
|
|
1
|
|
};
|
|
}
|