2020-10-31 19:31:34 +00:00
error: used `unimplemented!()`, `unreachable!()`, `todo!()`, `panic!()` or assertion in a function that returns `Result`
2020-10-18 08:55:25 +00:00
--> $DIR/panic_in_result_fn.rs:7:5
2020-08-27 23:18:05 +00:00
|
LL | / fn result_with_panic() -> Result<bool, String> // should emit lint
LL | | {
LL | | panic!("error");
LL | | }
| |_____^
|
2020-09-09 21:02:34 +00:00
= note: `-D clippy::panic-in-result-fn` implied by `-D warnings`
2020-10-31 19:31:34 +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-08-29 23:17:53 +00:00
note: return Err() instead of panicking
2020-10-18 08:55:25 +00:00
--> $DIR/panic_in_result_fn.rs:9:9
2020-08-27 23:18:05 +00:00
|
LL | panic!("error");
| ^^^^^^^^^^^^^^^^
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
2020-10-31 19:31:34 +00:00
error: used `unimplemented!()`, `unreachable!()`, `todo!()`, `panic!()` or assertion in a function that returns `Result`
2020-10-18 08:55:25 +00:00
--> $DIR/panic_in_result_fn.rs:12:5
2020-08-27 23:18:05 +00:00
|
LL | / fn result_with_unimplemented() -> Result<bool, String> // should emit lint
LL | | {
LL | | unimplemented!();
LL | | }
| |_____^
|
2020-10-31 19:31:34 +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-08-29 23:17:53 +00:00
note: return Err() instead of panicking
2020-10-18 08:55:25 +00:00
--> $DIR/panic_in_result_fn.rs:14:9
2020-08-27 23:18:05 +00:00
|
LL | unimplemented!();
| ^^^^^^^^^^^^^^^^^
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
2020-10-31 19:31:34 +00:00
error: used `unimplemented!()`, `unreachable!()`, `todo!()`, `panic!()` or assertion in a function that returns `Result`
2020-10-18 08:55:25 +00:00
--> $DIR/panic_in_result_fn.rs:17:5
2020-08-27 23:18:05 +00:00
|
LL | / fn result_with_unreachable() -> Result<bool, String> // should emit lint
LL | | {
LL | | unreachable!();
LL | | }
| |_____^
|
2020-10-31 19:31:34 +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-08-29 23:17:53 +00:00
note: return Err() instead of panicking
2020-10-18 08:55:25 +00:00
--> $DIR/panic_in_result_fn.rs:19:9
2020-08-27 23:18:05 +00:00
|
LL | unreachable!();
| ^^^^^^^^^^^^^^^
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
2020-10-31 19:31:34 +00:00
error: used `unimplemented!()`, `unreachable!()`, `todo!()`, `panic!()` or assertion in a function that returns `Result`
2020-10-18 08:55:25 +00:00
--> $DIR/panic_in_result_fn.rs:22:5
2020-08-27 23:18:05 +00:00
|
2020-08-27 23:55:23 +00:00
LL | / fn result_with_todo() -> Result<bool, String> // should emit lint
2020-08-27 23:18:05 +00:00
LL | | {
2020-08-27 23:55:23 +00:00
LL | | todo!("Finish this");
2020-08-27 23:18:05 +00:00
LL | | }
| |_____^
|
2020-10-31 19:31:34 +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-08-29 23:17:53 +00:00
note: return Err() instead of panicking
2020-10-18 08:55:25 +00:00
--> $DIR/panic_in_result_fn.rs:24:9
2020-08-27 23:18:05 +00:00
|
2020-08-27 23:55:23 +00:00
LL | todo!("Finish this");
| ^^^^^^^^^^^^^^^^^^^^^
2020-08-27 23:18:05 +00:00
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
2020-10-31 19:31:34 +00:00
error: used `unimplemented!()`, `unreachable!()`, `todo!()`, `panic!()` or assertion in a function that returns `Result`
2020-10-18 08:55:25 +00:00
--> $DIR/panic_in_result_fn.rs:53:1
2020-08-29 23:17:53 +00:00
|
LL | / fn function_result_with_panic() -> Result<bool, String> // should emit lint
LL | | {
LL | | panic!("error");
LL | | }
| |_^
|
2020-10-31 19:31:34 +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-08-29 23:17:53 +00:00
note: return Err() instead of panicking
2020-10-18 08:55:25 +00:00
--> $DIR/panic_in_result_fn.rs:55:5
2020-08-29 23:17:53 +00:00
|
LL | panic!("error");
| ^^^^^^^^^^^^^^^^
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
2020-10-31 19:31:34 +00:00
error: used `unimplemented!()`, `unreachable!()`, `todo!()`, `panic!()` or assertion in a function that returns `Result`
2020-10-18 08:55:25 +00:00
--> $DIR/panic_in_result_fn.rs:68:1
2020-08-29 23:17:53 +00:00
|
LL | / fn main() -> Result<(), String> {
LL | | todo!("finish main method");
LL | | Ok(())
LL | | }
| |_^
|
2020-10-31 19:31:34 +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-08-29 23:17:53 +00:00
note: return Err() instead of panicking
2020-10-18 08:55:25 +00:00
--> $DIR/panic_in_result_fn.rs:69:5
2020-08-29 23:17:53 +00:00
|
LL | todo!("finish main method");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
error: aborting due to 6 previous errors
2020-08-27 23:18:05 +00:00