2019-09-25 11:50:23 +00:00
|
|
|
#![warn(clippy::all, clippy::pedantic)]
|
2023-02-16 12:05:08 +00:00
|
|
|
#![allow(clippy::let_underscore_untyped)]
|
2019-09-25 11:50:23 +00:00
|
|
|
#![allow(clippy::missing_docs_in_private_items)]
|
2020-07-14 12:59:59 +00:00
|
|
|
#![allow(clippy::map_identity)]
|
2021-09-28 17:03:12 +00:00
|
|
|
#![allow(clippy::redundant_closure)]
|
2020-11-23 12:51:04 +00:00
|
|
|
#![allow(clippy::unnecessary_wraps)]
|
2021-08-12 09:16:25 +00:00
|
|
|
#![feature(result_flattening)]
|
2019-09-25 11:50:23 +00:00
|
|
|
|
|
|
|
fn main() {
|
2020-08-11 13:43:21 +00:00
|
|
|
// mapping to Option on Iterator
|
|
|
|
fn option_id(x: i8) -> Option<i8> {
|
|
|
|
Some(x)
|
|
|
|
}
|
|
|
|
let option_id_ref: fn(i8) -> Option<i8> = option_id;
|
|
|
|
let option_id_closure = |x| Some(x);
|
|
|
|
let _: Vec<_> = vec![5_i8; 6].into_iter().filter_map(option_id).collect();
|
|
|
|
let _: Vec<_> = vec![5_i8; 6].into_iter().filter_map(option_id_ref).collect();
|
|
|
|
let _: Vec<_> = vec![5_i8; 6].into_iter().filter_map(option_id_closure).collect();
|
|
|
|
let _: Vec<_> = vec![5_i8; 6].into_iter().filter_map(|x| x.checked_add(1)).collect();
|
|
|
|
|
|
|
|
// mapping to Iterator on Iterator
|
2019-09-25 11:50:23 +00:00
|
|
|
let _: Vec<_> = vec![5_i8; 6].into_iter().flat_map(|x| 0..x).collect();
|
2020-08-11 13:43:21 +00:00
|
|
|
|
|
|
|
// mapping to Option on Option
|
2020-04-15 17:06:41 +00:00
|
|
|
let _: Option<_> = (Some(Some(1))).and_then(|x| x);
|
2021-08-12 09:16:25 +00:00
|
|
|
|
|
|
|
// mapping to Result on Result
|
|
|
|
let _: Result<_, &str> = (Ok(Ok(1))).and_then(|x| x);
|
2022-06-04 11:34:07 +00:00
|
|
|
|
|
|
|
issue8734();
|
|
|
|
issue8878();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn issue8734() {
|
2022-06-30 10:13:54 +00:00
|
|
|
let _ = [0u8, 1, 2, 3]
|
|
|
|
.into_iter()
|
|
|
|
.flat_map(|n| match n {
|
|
|
|
1 => [n
|
|
|
|
.saturating_add(1)
|
|
|
|
.saturating_add(1)
|
|
|
|
.saturating_add(1)
|
|
|
|
.saturating_add(1)
|
|
|
|
.saturating_add(1)
|
|
|
|
.saturating_add(1)
|
|
|
|
.saturating_add(1)
|
|
|
|
.saturating_add(1)],
|
|
|
|
n => [n],
|
|
|
|
});
|
2022-06-04 11:34:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(clippy::bind_instead_of_map)] // map + flatten will be suggested to `and_then`, but afterwards `map` is suggested again
|
|
|
|
#[rustfmt::skip] // whitespace is important for this one
|
|
|
|
fn issue8878() {
|
|
|
|
std::collections::HashMap::<u32, u32>::new()
|
|
|
|
.get(&0)
|
|
|
|
.and_then(|_| {
|
|
|
|
// we need some newlines
|
|
|
|
// so that the span is big enough
|
2022-07-13 14:48:32 +00:00
|
|
|
// for a split output of the diagnostic
|
2022-06-04 11:34:07 +00:00
|
|
|
Some("")
|
|
|
|
// whitespace beforehand is important as well
|
|
|
|
});
|
2019-09-25 11:50:23 +00:00
|
|
|
}
|