Skip to content

Commit 0894660

Browse files
committed
bless new test result, it's a regression but seemingly a compiler bug
1 parent 1502713 commit 0894660

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

src/test/ui/rfc-1937-termination-trait/termination-trait-test-wrong-type.stderr

+3-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error[E0277]: `main` has invalid return type `Result<f32, ParseFloatError>`
1+
error[E0277]: `main` has invalid return type `f32`
22
--> $DIR/termination-trait-test-wrong-type.rs:6:1
33
|
44
LL | #[test]
@@ -8,11 +8,8 @@ LL | | "0".parse()
88
LL | | }
99
| |_^ `main` can only return types that implement `Termination`
1010
|
11-
= help: the trait `Termination` is not implemented for `Result<f32, ParseFloatError>`
12-
= help: the following other types implement trait `Termination`:
13-
Result<!, E>
14-
Result<(), E>
15-
Result<Infallible, E>
11+
= help: the trait `Termination` is not implemented for `f32`
12+
= note: required because of the requirements on the impl of `Termination` for `Result<f32, ParseFloatError>`
1613
note: required by a bound in `assert_test_result`
1714
--> $SRC_DIR/test/src/lib.rs:LL:COL
1815
|

0 commit comments

Comments
 (0)