mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-12-02 17:40:13 +00:00
11 lines
208 B
Rust
11 lines
208 B
Rust
|
#![warn(clippy::unwrap_used, clippy::expect_used)]
|
||
|
|
||
|
fn main() {
|
||
|
Some(3).unwrap();
|
||
|
Some(3).expect("Hello world!");
|
||
|
|
||
|
let a: Result<i32, i32> = Ok(3);
|
||
|
a.unwrap();
|
||
|
a.expect("Hello world!");
|
||
|
}
|