2023-07-17 03:19:29 -05:00
|
|
|
error: used `panic!()` or assertion in a function that returns `Result`
|
2021-11-04 07:52:36 -05:00
|
|
|
--> $DIR/panic_in_result_fn.rs:6:5
|
2020-09-24 07:49:22 -05:00
|
|
|
|
|
|
|
|
LL | / fn result_with_panic() -> Result<bool, String> // should emit lint
|
2023-08-24 14:32:12 -05:00
|
|
|
LL | |
|
2020-09-24 07:49:22 -05:00
|
|
|
LL | | {
|
|
|
|
LL | | panic!("error");
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
2023-07-17 03:19:29 -05:00
|
|
|
= help: `panic!()` or assertions should not be used in a function that returns `Result` as `Result` is expected to return an error instead of crashing
|
2020-09-24 07:49:22 -05:00
|
|
|
note: return Err() instead of panicking
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/panic_in_result_fn.rs:9:9
|
2020-09-24 07:49:22 -05:00
|
|
|
|
|
|
|
|
LL | panic!("error");
|
2021-10-14 13:28:30 -05:00
|
|
|
| ^^^^^^^^^^^^^^^
|
2022-09-22 11:04:22 -05:00
|
|
|
= note: `-D clippy::panic-in-result-fn` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::panic_in_result_fn)]`
|
2020-09-24 07:49:22 -05:00
|
|
|
|
2023-07-17 03:19:29 -05:00
|
|
|
error: used `panic!()` or assertion in a function that returns `Result`
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/panic_in_result_fn.rs:53:1
|
2020-09-24 07:49:22 -05:00
|
|
|
|
|
|
|
|
LL | / fn function_result_with_panic() -> Result<bool, String> // should emit lint
|
2023-08-24 14:32:12 -05:00
|
|
|
LL | |
|
2020-09-24 07:49:22 -05:00
|
|
|
LL | | {
|
|
|
|
LL | | panic!("error");
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
|
2023-07-17 03:19:29 -05:00
|
|
|
= help: `panic!()` or assertions should not be used in a function that returns `Result` as `Result` is expected to return an error instead of crashing
|
2020-09-24 07:49:22 -05:00
|
|
|
note: return Err() instead of panicking
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/panic_in_result_fn.rs:56:5
|
2020-09-24 07:49:22 -05:00
|
|
|
|
|
|
|
|
LL | panic!("error");
|
2021-10-14 13:28:30 -05:00
|
|
|
| ^^^^^^^^^^^^^^^
|
2020-09-24 07:49:22 -05:00
|
|
|
|
2023-07-17 03:19:29 -05:00
|
|
|
error: aborting due to 2 previous errors
|
2020-09-24 07:49:22 -05:00
|
|
|
|