2019-09-25 17:01:21 +00:00
|
|
|
// run-rustfix
|
|
|
|
|
2018-07-28 15:34:52 +00:00
|
|
|
#![warn(clippy::all)]
|
2018-10-10 15:13:53 +00:00
|
|
|
#![warn(clippy::redundant_pattern_matching)]
|
2020-07-14 12:59:59 +00:00
|
|
|
#![allow(
|
|
|
|
clippy::unit_arg,
|
|
|
|
unused_must_use,
|
|
|
|
clippy::needless_bool,
|
|
|
|
clippy::match_like_matches_macro,
|
|
|
|
deprecated
|
|
|
|
)]
|
2016-10-29 16:56:12 +00:00
|
|
|
|
|
|
|
fn main() {
|
2020-07-26 19:07:07 +00:00
|
|
|
let result: Result<usize, usize> = Err(5);
|
|
|
|
if let Ok(_) = &result {}
|
|
|
|
|
2016-10-29 16:56:12 +00:00
|
|
|
if let Ok(_) = Ok::<i32, i32>(42) {}
|
2017-02-08 13:58:07 +00:00
|
|
|
|
2018-12-09 22:26:16 +00:00
|
|
|
if let Err(_) = Err::<i32, i32>(42) {}
|
2016-10-29 16:56:12 +00:00
|
|
|
|
2020-04-17 10:53:13 +00:00
|
|
|
while let Ok(_) = Ok::<i32, i32>(10) {}
|
|
|
|
|
|
|
|
while let Err(_) = Ok::<i32, i32>(10) {}
|
|
|
|
|
2018-12-09 22:26:16 +00:00
|
|
|
if Ok::<i32, i32>(42).is_ok() {}
|
2016-10-29 16:56:12 +00:00
|
|
|
|
2018-12-09 22:26:16 +00:00
|
|
|
if Err::<i32, i32>(42).is_err() {}
|
2016-10-29 16:56:12 +00:00
|
|
|
|
2018-12-09 22:26:16 +00:00
|
|
|
if let Ok(x) = Ok::<i32, i32>(42) {
|
2016-10-29 16:56:12 +00:00
|
|
|
println!("{}", x);
|
|
|
|
}
|
2018-10-07 13:36:42 +00:00
|
|
|
|
|
|
|
match Ok::<i32, i32>(42) {
|
|
|
|
Ok(_) => true,
|
|
|
|
Err(_) => false,
|
|
|
|
};
|
|
|
|
|
|
|
|
match Ok::<i32, i32>(42) {
|
|
|
|
Ok(_) => false,
|
|
|
|
Err(_) => true,
|
|
|
|
};
|
|
|
|
|
|
|
|
match Err::<i32, i32>(42) {
|
|
|
|
Ok(_) => false,
|
|
|
|
Err(_) => true,
|
|
|
|
};
|
|
|
|
|
|
|
|
match Err::<i32, i32>(42) {
|
|
|
|
Ok(_) => true,
|
|
|
|
Err(_) => false,
|
|
|
|
};
|
|
|
|
|
2019-08-08 19:27:50 +00:00
|
|
|
let _ = if let Ok(_) = Ok::<usize, ()>(4) { true } else { false };
|
|
|
|
|
2020-04-23 08:40:16 +00:00
|
|
|
issue5504();
|
2020-09-20 01:32:36 +00:00
|
|
|
issue6067();
|
2020-09-20 09:38:23 +00:00
|
|
|
issue6065();
|
2020-04-23 08:40:16 +00:00
|
|
|
|
2020-09-21 13:32:26 +00:00
|
|
|
let _ = if let Ok(_) = gen_res() {
|
2020-04-23 08:40:16 +00:00
|
|
|
1
|
|
|
|
} else if let Err(_) = gen_res() {
|
2020-09-21 13:32:26 +00:00
|
|
|
2
|
2020-04-23 08:40:16 +00:00
|
|
|
} else {
|
2020-09-21 13:32:26 +00:00
|
|
|
3
|
2020-04-23 08:40:16 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn gen_res() -> Result<(), ()> {
|
|
|
|
Ok(())
|
2019-08-08 19:27:50 +00:00
|
|
|
}
|
|
|
|
|
2020-04-23 08:40:16 +00:00
|
|
|
macro_rules! m {
|
|
|
|
() => {
|
|
|
|
Some(42u32)
|
|
|
|
};
|
2019-08-08 19:27:50 +00:00
|
|
|
}
|
|
|
|
|
2020-04-23 08:40:16 +00:00
|
|
|
fn issue5504() {
|
|
|
|
fn result_opt() -> Result<Option<i32>, i32> {
|
|
|
|
Err(42)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn try_result_opt() -> Result<i32, i32> {
|
|
|
|
while let Some(_) = r#try!(result_opt()) {}
|
|
|
|
if let Some(_) = r#try!(result_opt()) {}
|
|
|
|
Ok(42)
|
|
|
|
}
|
|
|
|
|
|
|
|
try_result_opt();
|
|
|
|
|
|
|
|
if let Some(_) = m!() {}
|
|
|
|
while let Some(_) = m!() {}
|
2016-10-29 16:56:12 +00:00
|
|
|
}
|
2020-06-23 15:05:22 +00:00
|
|
|
|
2020-09-20 09:38:23 +00:00
|
|
|
fn issue6065() {
|
|
|
|
macro_rules! if_let_in_macro {
|
|
|
|
($pat:pat, $x:expr) => {
|
|
|
|
if let Some($pat) = $x {}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
// shouldn't be linted
|
|
|
|
if_let_in_macro!(_, Some(42));
|
|
|
|
}
|
|
|
|
|
2020-09-20 01:32:36 +00:00
|
|
|
// Methods that are unstable const should not be suggested within a const context, see issue #5697.
|
2020-09-21 13:32:26 +00:00
|
|
|
// However, in Rust 1.48.0 the methods `is_ok` and `is_err` of `Result` were stabilized as const,
|
|
|
|
// so the following should be linted.
|
2020-09-20 01:32:36 +00:00
|
|
|
const fn issue6067() {
|
|
|
|
if let Ok(_) = Ok::<i32, i32>(42) {}
|
|
|
|
|
|
|
|
if let Err(_) = Err::<i32, i32>(42) {}
|
|
|
|
|
|
|
|
while let Ok(_) = Ok::<i32, i32>(10) {}
|
|
|
|
|
|
|
|
while let Err(_) = Ok::<i32, i32>(10) {}
|
|
|
|
|
|
|
|
match Ok::<i32, i32>(42) {
|
|
|
|
Ok(_) => true,
|
|
|
|
Err(_) => false,
|
|
|
|
};
|
|
|
|
|
|
|
|
match Err::<i32, i32>(42) {
|
|
|
|
Ok(_) => false,
|
|
|
|
Err(_) => true,
|
|
|
|
};
|
|
|
|
}
|