mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
81 lines
1.5 KiB
Rust
81 lines
1.5 KiB
Rust
|
#![warn(clippy::same_functions_in_if_condition)]
|
||
|
#![allow(clippy::ifs_same_cond)] // This warning is different from `ifs_same_cond`.
|
||
|
#![allow(clippy::if_same_then_else, clippy::comparison_chain)] // all empty blocks
|
||
|
|
||
|
fn function() -> bool {
|
||
|
true
|
||
|
}
|
||
|
|
||
|
fn fn_arg(_arg: u8) -> bool {
|
||
|
true
|
||
|
}
|
||
|
|
||
|
struct Struct;
|
||
|
|
||
|
impl Struct {
|
||
|
fn method(&self) -> bool {
|
||
|
true
|
||
|
}
|
||
|
fn method_arg(&self, _arg: u8) -> bool {
|
||
|
true
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn ifs_same_cond_fn() {
|
||
|
let a = 0;
|
||
|
let obj = Struct;
|
||
|
|
||
|
if function() {
|
||
|
} else if function() {
|
||
|
//~ ERROR ifs same condition
|
||
|
}
|
||
|
|
||
|
if fn_arg(a) {
|
||
|
} else if fn_arg(a) {
|
||
|
//~ ERROR ifs same condition
|
||
|
}
|
||
|
|
||
|
if obj.method() {
|
||
|
} else if obj.method() {
|
||
|
//~ ERROR ifs same condition
|
||
|
}
|
||
|
|
||
|
if obj.method_arg(a) {
|
||
|
} else if obj.method_arg(a) {
|
||
|
//~ ERROR ifs same condition
|
||
|
}
|
||
|
|
||
|
let mut v = vec![1];
|
||
|
if v.pop() == None {
|
||
|
//~ ERROR ifs same condition
|
||
|
} else if v.pop() == None {
|
||
|
}
|
||
|
|
||
|
if v.len() == 42 {
|
||
|
//~ ERROR ifs same condition
|
||
|
} else if v.len() == 42 {
|
||
|
}
|
||
|
|
||
|
if v.len() == 1 {
|
||
|
// ok, different conditions
|
||
|
} else if v.len() == 2 {
|
||
|
}
|
||
|
|
||
|
if fn_arg(0) {
|
||
|
// ok, different arguments.
|
||
|
} else if fn_arg(1) {
|
||
|
}
|
||
|
|
||
|
if obj.method_arg(0) {
|
||
|
// ok, different arguments.
|
||
|
} else if obj.method_arg(1) {
|
||
|
}
|
||
|
|
||
|
if a == 1 {
|
||
|
// ok, warning is on `ifs_same_cond` behalf.
|
||
|
} else if a == 1 {
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn main() {}
|