2023-07-07 13:39:31 -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
|
|
|
|
LL | | {
|
|
|
|
LL | | panic!("error");
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
2023-07-07 13:39:31 -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
|
2021-11-04 07:52:36 -05:00
|
|
|
--> $DIR/panic_in_result_fn.rs:8: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`
|
2020-09-24 07:49:22 -05:00
|
|
|
|
2023-07-07 13:39:31 -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:52:1
|
2020-09-24 07:49:22 -05:00
|
|
|
|
|
|
|
|
LL | / fn function_result_with_panic() -> Result<bool, String> // should emit lint
|
|
|
|
LL | | {
|
|
|
|
LL | | panic!("error");
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
|
2023-07-07 13:39:31 -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
|
2021-11-04 07:52:36 -05:00
|
|
|
--> $DIR/panic_in_result_fn.rs:54: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-07 13:39:31 -05:00
|
|
|
error: aborting due to 2 previous errors
|
2020-09-24 07:49:22 -05:00
|
|
|
|