mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 21:23:56 +00:00
23 lines
588 B
Rust
23 lines
588 B
Rust
#![deny(clippy::panicking_unwrap, clippy::unnecessary_unwrap)]
|
|
#![allow(
|
|
clippy::if_same_then_else,
|
|
clippy::branches_sharing_code,
|
|
clippy::unnecessary_literal_unwrap
|
|
)]
|
|
//@no-rustfix
|
|
fn test_nested() {
|
|
fn nested() {
|
|
let x = Some(());
|
|
if x.is_some() {
|
|
// unnecessary
|
|
x.unwrap();
|
|
//~^ ERROR: called `unwrap` on `x` after checking its variant with `is_some`
|
|
} else {
|
|
// will panic
|
|
x.unwrap();
|
|
//~^ ERROR: this call to `unwrap()` will always panic
|
|
}
|
|
}
|
|
}
|
|
|
|
fn main() {}
|