rust/tests/ui/checked_unwrap/complex_conditionals_nested.rs

20 lines
396 B
Rust
Raw Normal View History

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