rust-clippy/tests/ui/unnecessary_literal_unwrap.stderr
Pavan Kumar Sunkara 0b1bb5fbf3 Implement the lint
2023-06-12 16:19:26 +01:00

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