mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-19 03:03:21 +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!");
|
|
}
|