2020-04-04 06:59:52 +00:00
|
|
|
#![warn(clippy::result_map_or_into_option)]
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let opt: Result<u32, &str> = Ok(1);
|
|
|
|
let _ = opt.map_or(None, Some);
|
2023-11-23 12:30:36 +00:00
|
|
|
//~^ ERROR: called `map_or(None, Some)` on a `Result` value
|
2023-11-20 13:54:43 +00:00
|
|
|
let _ = opt.map_or_else(|_| None, Some);
|
|
|
|
//~^ ERROR: called `map_or_else(|_| None, Some)` on a `Result` value
|
|
|
|
#[rustfmt::skip]
|
|
|
|
let _ = opt.map_or_else(|_| { None }, Some);
|
|
|
|
//~^ ERROR: called `map_or_else(|_| None, Some)` on a `Result` value
|
2020-04-04 06:59:52 +00:00
|
|
|
|
|
|
|
let rewrap = |s: u32| -> Option<u32> { Some(s) };
|
|
|
|
|
|
|
|
// A non-Some `f` arg should not emit the lint
|
|
|
|
let opt: Result<u32, &str> = Ok(1);
|
|
|
|
let _ = opt.map_or(None, rewrap);
|
2020-04-04 21:02:45 +00:00
|
|
|
|
|
|
|
// A non-Some `f` closure where the argument is not used as the
|
|
|
|
// return should not emit the lint
|
|
|
|
let opt: Result<u32, &str> = Ok(1);
|
2023-06-15 13:15:52 +00:00
|
|
|
_ = opt.map_or(None, |_x| Some(1));
|
2023-11-20 13:54:43 +00:00
|
|
|
let _ = opt.map_or_else(|a| a.parse::<u32>().ok(), Some);
|
2020-04-04 06:59:52 +00:00
|
|
|
}
|