2023-07-17 08:19:29 +00:00
|
|
|
error: used `panic!()` or assertion in a function that returns `Result`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/panic_in_result_fn.rs:6:5
|
2020-09-24 12:49:22 +00:00
|
|
|
|
|
|
|
|
LL | / fn result_with_panic() -> Result<bool, String> // should emit lint
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | |
|
2020-09-24 12:49:22 +00:00
|
|
|
LL | | {
|
|
|
|
LL | | panic!("error");
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
2023-07-17 08:19:29 +00: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 12:49:22 +00:00
|
|
|
note: return Err() instead of panicking
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/panic_in_result_fn.rs:9:9
|
2020-09-24 12:49:22 +00:00
|
|
|
|
|
|
|
|
LL | panic!("error");
|
2021-10-14 18:28:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^
|
2022-09-22 16:04:22 +00:00
|
|
|
= note: `-D clippy::panic-in-result-fn` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::panic_in_result_fn)]`
|
2020-09-24 12:49:22 +00:00
|
|
|
|
2023-07-17 08:19:29 +00:00
|
|
|
error: used `panic!()` or assertion in a function that returns `Result`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/panic_in_result_fn.rs:53:1
|
2020-09-24 12:49:22 +00:00
|
|
|
|
|
|
|
|
LL | / fn function_result_with_panic() -> Result<bool, String> // should emit lint
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | |
|
2020-09-24 12:49:22 +00:00
|
|
|
LL | | {
|
|
|
|
LL | | panic!("error");
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
|
2023-07-17 08:19:29 +00: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 12:49:22 +00:00
|
|
|
note: return Err() instead of panicking
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/panic_in_result_fn.rs:56:5
|
2020-09-24 12:49:22 +00:00
|
|
|
|
|
|
|
|
LL | panic!("error");
|
2021-10-14 18:28:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^
|
2020-09-24 12:49:22 +00:00
|
|
|
|
2023-07-17 08:19:29 +00:00
|
|
|
error: aborting due to 2 previous errors
|
2020-09-24 12:49:22 +00:00
|
|
|
|