2018-07-28 15:34:52 +00:00
|
|
|
#![deny(clippy::panicking_unwrap, clippy::unnecessary_unwrap)]
|
2023-07-02 12:35:19 +00:00
|
|
|
#![allow(
|
|
|
|
clippy::if_same_then_else,
|
|
|
|
clippy::branches_sharing_code,
|
|
|
|
clippy::unnecessary_literal_unwrap
|
|
|
|
)]
|
2018-06-08 03:55:11 +00:00
|
|
|
|
2018-05-27 22:02:38 +00:00
|
|
|
fn test_complex_conditions() {
|
|
|
|
let x: Result<(), ()> = Ok(());
|
|
|
|
let y: Result<(), ()> = Ok(());
|
|
|
|
if x.is_ok() && y.is_err() {
|
2018-06-08 16:12:01 +00:00
|
|
|
x.unwrap(); // unnecessary
|
|
|
|
x.unwrap_err(); // will panic
|
|
|
|
y.unwrap(); // will panic
|
|
|
|
y.unwrap_err(); // unnecessary
|
2018-05-27 22:02:38 +00:00
|
|
|
} else {
|
2018-06-08 16:12:01 +00:00
|
|
|
// not statically determinable whether any of the following will always succeed or always fail:
|
|
|
|
x.unwrap();
|
2018-05-27 22:02:38 +00:00
|
|
|
x.unwrap_err();
|
|
|
|
y.unwrap();
|
2018-06-08 16:12:01 +00:00
|
|
|
y.unwrap_err();
|
2018-05-27 22:02:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if x.is_ok() || y.is_ok() {
|
2018-06-08 16:12:01 +00:00
|
|
|
// not statically determinable whether any of the following will always succeed or always fail:
|
2018-05-27 22:02:38 +00:00
|
|
|
x.unwrap();
|
|
|
|
y.unwrap();
|
|
|
|
} else {
|
2018-06-08 16:12:01 +00:00
|
|
|
x.unwrap(); // will panic
|
|
|
|
x.unwrap_err(); // unnecessary
|
|
|
|
y.unwrap(); // will panic
|
|
|
|
y.unwrap_err(); // unnecessary
|
2018-05-27 22:02:38 +00:00
|
|
|
}
|
|
|
|
let z: Result<(), ()> = Ok(());
|
|
|
|
if x.is_ok() && !(y.is_ok() || z.is_err()) {
|
2018-06-08 16:12:01 +00:00
|
|
|
x.unwrap(); // unnecessary
|
|
|
|
x.unwrap_err(); // will panic
|
|
|
|
y.unwrap(); // will panic
|
|
|
|
y.unwrap_err(); // unnecessary
|
|
|
|
z.unwrap(); // unnecessary
|
|
|
|
z.unwrap_err(); // will panic
|
2018-05-27 22:02:38 +00:00
|
|
|
}
|
|
|
|
if x.is_ok() || !(y.is_ok() && z.is_err()) {
|
2018-06-08 16:12:01 +00:00
|
|
|
// not statically determinable whether any of the following will always succeed or always fail:
|
|
|
|
x.unwrap();
|
2018-05-27 22:02:38 +00:00
|
|
|
y.unwrap();
|
2018-06-08 16:12:01 +00:00
|
|
|
z.unwrap();
|
|
|
|
} else {
|
|
|
|
x.unwrap(); // will panic
|
|
|
|
x.unwrap_err(); // unnecessary
|
|
|
|
y.unwrap(); // unnecessary
|
|
|
|
y.unwrap_err(); // will panic
|
|
|
|
z.unwrap(); // will panic
|
|
|
|
z.unwrap_err(); // unnecessary
|
2018-05-27 22:02:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-15 19:27:44 +00:00
|
|
|
fn main() {}
|