2020-12-20 16:19:49 +00:00
error: used `unimplemented!()`, `unreachable!()`, `todo!()`, `panic!()` or assertion in a function that returns `Result`
2021-11-04 12:52:36 +00:00
--> $DIR/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
LL | | {
LL | | panic!("error");
LL | | }
| |_____^
|
= note: `-D clippy::panic-in-result-fn` implied by `-D warnings`
2020-12-20 16:19:49 +00:00
= help: `unimplemented!()`, `unreachable!()`, `todo!()`, `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
2021-11-04 12:52:36 +00:00
--> $DIR/panic_in_result_fn.rs:8:9
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
2020-12-20 16:19:49 +00:00
error: used `unimplemented!()`, `unreachable!()`, `todo!()`, `panic!()` or assertion in a function that returns `Result`
2021-11-04 12:52:36 +00:00
--> $DIR/panic_in_result_fn.rs:11:5
2020-09-24 12:49:22 +00:00
|
LL | / fn result_with_unimplemented() -> Result<bool, String> // should emit lint
LL | | {
LL | | unimplemented!();
LL | | }
| |_____^
|
2020-12-20 16:19:49 +00:00
= help: `unimplemented!()`, `unreachable!()`, `todo!()`, `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
2021-11-04 12:52:36 +00:00
--> $DIR/panic_in_result_fn.rs:13:9
2020-09-24 12:49:22 +00:00
|
LL | unimplemented!();
2021-10-14 18:28:30 +00:00
| ^^^^^^^^^^^^^^^^
2020-09-24 12:49:22 +00:00
2020-12-20 16:19:49 +00:00
error: used `unimplemented!()`, `unreachable!()`, `todo!()`, `panic!()` or assertion in a function that returns `Result`
2021-11-04 12:52:36 +00:00
--> $DIR/panic_in_result_fn.rs:16:5
2020-09-24 12:49:22 +00:00
|
LL | / fn result_with_unreachable() -> Result<bool, String> // should emit lint
LL | | {
LL | | unreachable!();
LL | | }
| |_____^
|
2020-12-20 16:19:49 +00:00
= help: `unimplemented!()`, `unreachable!()`, `todo!()`, `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
2021-11-04 12:52:36 +00:00
--> $DIR/panic_in_result_fn.rs:18:9
2020-09-24 12:49:22 +00:00
|
LL | unreachable!();
2021-10-14 18:28:30 +00:00
| ^^^^^^^^^^^^^^
2020-09-24 12:49:22 +00:00
2020-12-20 16:19:49 +00:00
error: used `unimplemented!()`, `unreachable!()`, `todo!()`, `panic!()` or assertion in a function that returns `Result`
2021-11-04 12:52:36 +00:00
--> $DIR/panic_in_result_fn.rs:21:5
2020-09-24 12:49:22 +00:00
|
LL | / fn result_with_todo() -> Result<bool, String> // should emit lint
LL | | {
LL | | todo!("Finish this");
LL | | }
| |_____^
|
2020-12-20 16:19:49 +00:00
= help: `unimplemented!()`, `unreachable!()`, `todo!()`, `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
2021-11-04 12:52:36 +00:00
--> $DIR/panic_in_result_fn.rs:23:9
2020-09-24 12:49:22 +00:00
|
LL | todo!("Finish this");
2021-10-14 18:28:30 +00:00
| ^^^^^^^^^^^^^^^^^^^^
2020-09-24 12:49:22 +00:00
2020-12-20 16:19:49 +00:00
error: used `unimplemented!()`, `unreachable!()`, `todo!()`, `panic!()` or assertion in a function that returns `Result`
2021-11-04 12:52:36 +00:00
--> $DIR/panic_in_result_fn.rs:52:1
2020-09-24 12:49:22 +00:00
|
LL | / fn function_result_with_panic() -> Result<bool, String> // should emit lint
LL | | {
LL | | panic!("error");
LL | | }
| |_^
|
2020-12-20 16:19:49 +00:00
= help: `unimplemented!()`, `unreachable!()`, `todo!()`, `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
2021-11-04 12:52:36 +00:00
--> $DIR/panic_in_result_fn.rs:54: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
2020-12-20 16:19:49 +00:00
error: used `unimplemented!()`, `unreachable!()`, `todo!()`, `panic!()` or assertion in a function that returns `Result`
2021-11-04 12:52:36 +00:00
--> $DIR/panic_in_result_fn.rs:67:1
2020-09-24 12:49:22 +00:00
|
LL | / fn main() -> Result<(), String> {
LL | | todo!("finish main method");
LL | | Ok(())
LL | | }
| |_^
|
2020-12-20 16:19:49 +00:00
= help: `unimplemented!()`, `unreachable!()`, `todo!()`, `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
2021-11-04 12:52:36 +00:00
--> $DIR/panic_in_result_fn.rs:68:5
2020-09-24 12:49:22 +00:00
|
LL | todo!("finish main method");
2021-10-14 18:28:30 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
2020-09-24 12:49:22 +00:00
error: aborting due to 6 previous errors