mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 09:27:25 +00:00
11 lines
296 B
Text
11 lines
296 B
Text
error: used `unwrap()` on `Some` value
|
|
--> $DIR/unnecessary_literal_unwrap.rs:4:15
|
|
|
|
|
LL | let val = Some(1).unwrap();
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
= help:
|
|
= note: `-D clippy::unnecessary-literal-unwrap` implied by `-D warnings`
|
|
|
|
error: aborting due to previous error
|
|
|