9 lines
211 B
Rust
9 lines
211 B
Rust
fn main() {
|
|
let a = if true { true };
|
|
//~^ ERROR if may be missing an else clause [E0317]
|
|
//~| expected type `()`
|
|
//~| found type `bool`
|
|
//~| expected (), found bool
|
|
println!("{}", a);
|
|
}
|