From 1502713f994d595e4ae1ffbbe8ef3e373bbb11bc Mon Sep 17 00:00:00 2001 From: Aria Beingessner Date: Mon, 6 Jun 2022 15:14:41 -0400 Subject: [PATCH 1/2] Impl Termination for Infallible and then make the Result impls of Termination into a blanket This allows things like `Result` to 'just work' --- library/std/src/process.rs | 41 ++++++++++++++++---------------------- 1 file changed, 17 insertions(+), 24 deletions(-) diff --git a/library/std/src/process.rs b/library/std/src/process.rs index e733766741d..da8eee9030b 100644 --- a/library/std/src/process.rs +++ b/library/std/src/process.rs @@ -2140,16 +2140,6 @@ impl Termination for () { } } -#[stable(feature = "termination_trait_lib", since = "1.61.0")] -impl Termination for Result<(), E> { - fn report(self) -> ExitCode { - match self { - Ok(()) => ().report(), - Err(err) => Err::(err).report(), - } - } -} - #[stable(feature = "termination_trait_lib", since = "1.61.0")] impl Termination for ! { fn report(self) -> ExitCode { @@ -2158,21 +2148,9 @@ impl Termination for ! { } #[stable(feature = "termination_trait_lib", since = "1.61.0")] -impl Termination for Result { +impl Termination for Infallible { fn report(self) -> ExitCode { - let Err(err) = self; - // Ignore error if the write fails, for example because stderr is - // already closed. There is not much point panicking at this point. - let _ = writeln!(io::stderr(), "Error: {err:?}"); - ExitCode::FAILURE - } -} - -#[stable(feature = "termination_trait_lib", since = "1.61.0")] -impl Termination for Result { - fn report(self) -> ExitCode { - let Err(err) = self; - Err::(err).report() + match self {} } } @@ -2183,3 +2161,18 @@ impl Termination for ExitCode { self } } + +#[stable(feature = "termination_trait_lib", since = "1.61.0")] +impl Termination for Result { + fn report(self) -> ExitCode { + match self { + Ok(val) => val.report(), + Err(err) => { + // Ignore error if the write fails, for example because stderr is + // already closed. There is not much point panicking at this point. + let _ = writeln!(io::stderr(), "Error: {err:?}"); + ExitCode::FAILURE + } + } + } +} From 0894660d3ba7b7bfb3114f91d97bb0664598df3c Mon Sep 17 00:00:00 2001 From: Aria Beingessner Date: Tue, 7 Jun 2022 13:23:52 -0400 Subject: [PATCH 2/2] bless new test result, it's a regression but seemingly a compiler bug --- .../termination-trait-test-wrong-type.stderr | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/test/ui/rfc-1937-termination-trait/termination-trait-test-wrong-type.stderr b/src/test/ui/rfc-1937-termination-trait/termination-trait-test-wrong-type.stderr index 96a899ecca5..6086723b5c4 100644 --- a/src/test/ui/rfc-1937-termination-trait/termination-trait-test-wrong-type.stderr +++ b/src/test/ui/rfc-1937-termination-trait/termination-trait-test-wrong-type.stderr @@ -1,4 +1,4 @@ -error[E0277]: `main` has invalid return type `Result` +error[E0277]: `main` has invalid return type `f32` --> $DIR/termination-trait-test-wrong-type.rs:6:1 | LL | #[test] @@ -8,11 +8,8 @@ LL | | "0".parse() LL | | } | |_^ `main` can only return types that implement `Termination` | - = help: the trait `Termination` is not implemented for `Result` - = help: the following other types implement trait `Termination`: - Result - Result<(), E> - Result + = help: the trait `Termination` is not implemented for `f32` + = note: required because of the requirements on the impl of `Termination` for `Result` note: required by a bound in `assert_test_result` --> $SRC_DIR/test/src/lib.rs:LL:COL |