mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-17 18:28:40 +00:00
16 lines
315 B
Rust
16 lines
315 B
Rust
|
#![deny(clippy::panicking_unwrap, clippy::unnecessary_unwrap)]
|
||
|
#![allow(clippy::if_same_then_else)]
|
||
|
|
||
|
fn test_nested() {
|
||
|
fn nested() {
|
||
|
let x = Some(());
|
||
|
if x.is_some() {
|
||
|
x.unwrap(); // unnecessary
|
||
|
} else {
|
||
|
x.unwrap(); // will panic
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn main() {}
|