Skip to content

Commit 2433d37

Browse files
simplify impl Termination for Result<Infallible, E>
Co-authored-by: Konrad Borowski <[email protected]>
1 parent 2bdd075 commit 2433d37

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

library/std/src/process.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -2056,8 +2056,7 @@ impl<E: fmt::Debug> Termination for Result<!, E> {
20562056
impl<E: fmt::Debug> Termination for Result<Infallible, E> {
20572057
fn report(self) -> i32 {
20582058
let Err(err) = self;
2059-
eprintln!("Error: {:?}", err);
2060-
ExitCode::FAILURE.report()
2059+
Err::<!, _>(err).report()
20612060
}
20622061
}
20632062

0 commit comments

Comments
 (0)