rust-clippy/tests/ui/option_map_or_none.fixed
2019-04-18 08:12:59 +02:00

14 lines
296 B
Rust

// run-rustfix
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)
});
}