mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-03 04:04:06 +00:00
20 lines
271 B
Rust
20 lines
271 B
Rust
|
|
|
|
#![warn(clippy)]
|
|
#![warn(if_not_else)]
|
|
|
|
fn bla() -> bool { unimplemented!() }
|
|
|
|
fn main() {
|
|
if !bla() {
|
|
println!("Bugs");
|
|
} else {
|
|
println!("Bunny");
|
|
}
|
|
if 4 != 5 {
|
|
println!("Bugs");
|
|
} else {
|
|
println!("Bunny");
|
|
}
|
|
}
|