2018-07-28 15:34:52 +00:00
|
|
|
#![warn(clippy::all)]
|
|
|
|
#![warn(clippy::if_not_else)]
|
2016-02-29 08:45:36 +00:00
|
|
|
|
2021-10-29 02:11:43 +00:00
|
|
|
fn foo() -> bool {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
2018-12-09 22:26:16 +00:00
|
|
|
fn bla() -> bool {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
2016-02-29 08:45:36 +00:00
|
|
|
|
|
|
|
fn main() {
|
2017-02-08 13:58:07 +00:00
|
|
|
if !bla() {
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: unnecessary boolean `not` operation
|
2016-02-29 08:45:36 +00:00
|
|
|
println!("Bugs");
|
|
|
|
} else {
|
|
|
|
println!("Bunny");
|
|
|
|
}
|
2017-02-08 13:58:07 +00:00
|
|
|
if 4 != 5 {
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: unnecessary `!=` operation
|
2016-02-29 08:45:36 +00:00
|
|
|
println!("Bugs");
|
|
|
|
} else {
|
|
|
|
println!("Bunny");
|
|
|
|
}
|
2021-10-29 02:11:43 +00:00
|
|
|
if !foo() {
|
|
|
|
println!("Foo");
|
|
|
|
} else if !bla() {
|
|
|
|
println!("Bugs");
|
|
|
|
} else {
|
|
|
|
println!("Bunny");
|
|
|
|
}
|
2016-02-29 08:45:36 +00:00
|
|
|
}
|