mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
16 lines
345 B
Rust
16 lines
345 B
Rust
// run-rustfix
|
|
|
|
#![allow(clippy::option_and_then_some)]
|
|
|
|
fn main() {
|
|
let opt = Some(1);
|
|
|
|
// Check `OPTION_MAP_OR_NONE`.
|
|
// Single line case.
|
|
let _ = opt.map_or(None, |x| Some(x + 1));
|
|
// Multi-line case.
|
|
#[rustfmt::skip]
|
|
let _ = opt.map_or(None, |x| {
|
|
Some(x + 1)
|
|
});
|
|
}
|