rust-clippy/tests/ui/if_let_mutex.rs

43 lines
916 B
Rust
Raw Normal View History

#![warn(clippy::if_let_mutex)]
use std::ops::Deref;
use std::sync::Mutex;
2020-03-18 01:51:43 +00:00
fn do_stuff<T>(_: T) {}
fn if_let() {
let m = Mutex::new(1_u8);
2020-03-18 01:51:43 +00:00
if let Err(locked) = m.lock() {
do_stuff(locked);
} else {
2020-03-18 01:51:43 +00:00
let lock = m.lock().unwrap();
do_stuff(lock);
};
}
// This is the most common case as the above case is pretty
// contrived.
fn if_let_option() {
let m = Mutex::new(Some(0_u8));
if let Some(locked) = m.lock().unwrap().deref() {
do_stuff(locked);
} else {
let lock = m.lock().unwrap();
do_stuff(lock);
};
}
// When mutexs are different don't warn
fn if_let_different_mutex() {
let m = Mutex::new(Some(0_u8));
let other = Mutex::new(None::<u8>);
if let Some(locked) = m.lock().unwrap().deref() {
do_stuff(locked);
} else {
let lock = other.lock().unwrap();
do_stuff(lock);
};
}
fn main() {}