2
0
Fork 0
mirror of https://github.com/rust-lang/rust-clippy synced 2025-02-21 00:18:46 +00:00
rust-clippy/tests/ui/option_map_or_none.fixed

15 lines
296 B
Rust
Raw Normal View History

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