rust-clippy/tests/ui/unwrap.stderr

32 lines
996 B
Text
Raw Normal View History

error: used `unwrap()` on an `Option` value
2024-02-17 12:16:29 +00:00
--> tests/ui/unwrap.rs:6:13
2019-10-16 17:43:26 +00:00
|
LL | let _ = opt.unwrap();
| ^^^^^^^^^^^^
|
= note: if this value is `None`, it will panic
= help: consider using `expect()` to provide a better panic message
2022-09-22 16:04:22 +00:00
= note: `-D clippy::unwrap-used` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::unwrap_used)]`
2019-10-16 17:43:26 +00:00
error: used `unwrap()` on a `Result` value
2024-02-17 12:16:29 +00:00
--> tests/ui/unwrap.rs:12:13
2019-10-16 17:43:26 +00:00
|
LL | let _ = res.unwrap();
| ^^^^^^^^^^^^
|
= note: if this value is an `Err`, it will panic
= help: consider using `expect()` to provide a better panic message
2019-10-16 17:43:26 +00:00
error: used `unwrap_err()` on a `Result` value
2024-02-17 12:16:29 +00:00
--> tests/ui/unwrap.rs:14:13
|
LL | let _ = res.unwrap_err();
| ^^^^^^^^^^^^^^^^
|
= note: if this value is an `Ok`, it will panic
= help: consider using `expect_err()` to provide a better panic message
error: aborting due to 3 previous errors
2019-10-16 17:43:26 +00:00