mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
14 lines
296 B
Rust
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)
|
|
});
|
|
}
|