]> git.lizzy.rs Git - rust.git/blob - tests/ui/map_flatten.rs
Auto merge of #88214 - notriddle:notriddle/for-loop-span-drop-temps-mut, r=nagisa
[rust.git] / tests / ui / map_flatten.rs
1 // run-rustfix
2
3 #![warn(clippy::all, clippy::pedantic)]
4 #![allow(clippy::let_underscore_drop)]
5 #![allow(clippy::missing_docs_in_private_items)]
6 #![allow(clippy::map_identity)]
7 #![allow(clippy::unnecessary_wraps)]
8 #![feature(result_flattening)]
9
10 fn main() {
11     // mapping to Option on Iterator
12     fn option_id(x: i8) -> Option<i8> {
13         Some(x)
14     }
15     let option_id_ref: fn(i8) -> Option<i8> = option_id;
16     let option_id_closure = |x| Some(x);
17     let _: Vec<_> = vec![5_i8; 6].into_iter().map(option_id).flatten().collect();
18     let _: Vec<_> = vec![5_i8; 6].into_iter().map(option_id_ref).flatten().collect();
19     let _: Vec<_> = vec![5_i8; 6].into_iter().map(option_id_closure).flatten().collect();
20     let _: Vec<_> = vec![5_i8; 6].into_iter().map(|x| x.checked_add(1)).flatten().collect();
21
22     // mapping to Iterator on Iterator
23     let _: Vec<_> = vec![5_i8; 6].into_iter().map(|x| 0..x).flatten().collect();
24
25     // mapping to Option on Option
26     let _: Option<_> = (Some(Some(1))).map(|x| x).flatten();
27
28     // mapping to Result on Result
29     let _: Result<_, &str> = (Ok(Ok(1))).map(|x| x).flatten();
30 }