2022-11-17 08:57:39 -06:00
|
|
|
error: used `expect()` on an `Option` value
|
2023-05-31 12:47:10 -05:00
|
|
|
--> $DIR/expect_used.rs:7:13
|
2022-05-21 06:24:00 -05:00
|
|
|
|
|
|
|
|
LL | let _ = opt.expect("");
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
2023-08-02 13:57:06 -05:00
|
|
|
= note: if this value is `None`, it will panic
|
2022-09-22 11:04:22 -05:00
|
|
|
= note: `-D clippy::expect-used` implied by `-D warnings`
|
2022-05-21 06:24:00 -05:00
|
|
|
|
2022-11-17 08:57:39 -06:00
|
|
|
error: used `expect()` on a `Result` value
|
2023-05-31 12:47:10 -05:00
|
|
|
--> $DIR/expect_used.rs:12:13
|
2022-05-21 06:24:00 -05:00
|
|
|
|
|
|
|
|
LL | let _ = res.expect("");
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
2023-08-02 13:57:06 -05:00
|
|
|
= note: if this value is an `Err`, it will panic
|
2022-05-21 06:24:00 -05:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|