rust-clippy/tests/ui/short_circuit_statement.fixed
hotate29 13ad14b22d
update: ``Sugg::not()`` replacing the comparison operator. #7320
When inverting an expression, the output is now like ```foo != 0``` instead of ```!(foo == 0)```, the comparison operator is now replaced.
2021-12-18 00:07:36 +09:00

18 lines
231 B
Rust

// run-rustfix
#![warn(clippy::short_circuit_statement)]
#![allow(clippy::nonminimal_bool)]
fn main() {
if f() { g(); }
if !f() { g(); }
if 1 != 2 { g(); }
}
fn f() -> bool {
true
}
fn g() -> bool {
false
}