rust/tests/ui/option_map_or_none.fixed

17 lines
337 B
Rust
Raw Normal View History

// run-rustfix
#![allow(clippy::option_and_then_some)]
fn main() {
let opt = Some(1);
// Check `OPTION_MAP_OR_NONE`.
// Single line case.
let _ = opt.and_then(|x| Some(x + 1));
// Multi-line case.
#[rustfmt::skip]
let _ = opt.and_then(|x| {
Some(x + 1)
});
}