rust-clippy/tests/ui/unwrap.rs

18 lines
277 B
Rust
Raw Normal View History

#![warn(clippy::unwrap_used)]
2019-10-16 17:43:26 +00:00
fn unwrap_option() {
let opt = Some(0);
let _ = opt.unwrap();
}
fn unwrap_result() {
let res: Result<u8, u8> = Ok(0);
2019-10-16 17:43:26 +00:00
let _ = res.unwrap();
let _ = res.unwrap_err();
2019-10-16 17:43:26 +00:00
}
fn main() {
unwrap_option();
unwrap_result();
}