mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
16 lines
247 B
Rust
16 lines
247 B
Rust
#![warn(clippy::unwrap_used)]
|
|
|
|
fn unwrap_option() {
|
|
let opt = Some(0);
|
|
let _ = opt.unwrap();
|
|
}
|
|
|
|
fn unwrap_result() {
|
|
let res: Result<u8, ()> = Ok(0);
|
|
let _ = res.unwrap();
|
|
}
|
|
|
|
fn main() {
|
|
unwrap_option();
|
|
unwrap_result();
|
|
}
|