rust/tests/ui/manual_map_option_2.fixed

11 lines
175 B
Rust
Raw Normal View History

// run-rustfix
#![warn(clippy::manual_map)]
fn main() {
let _ = Some(0).map(|x| {
let y = (String::new(), String::new());
(x, y.0)
});
}