rust-clippy/tests/ui/checked_unwrap/complex_conditionals_nested.rs

16 lines
346 B
Rust
Raw Normal View History

2020-03-18 14:24:48 +00:00
#![deny(clippy::panicking_unwrap, clippy::unnecessary_unwrap)]
#![allow(clippy::if_same_then_else, clippy::branches_sharing_code)]
2020-03-18 14:24:48 +00:00
fn test_nested() {
fn nested() {
let x = Some(());
if x.is_some() {
x.unwrap(); // unnecessary
} else {
x.unwrap(); // will panic
}
}
}
fn main() {}