]> git.lizzy.rs Git - rust.git/blob - src/test/ui/rfc-1937-termination-trait/termination-trait-test-wrong-type.stderr
Auto merge of #95454 - randomicon00:fix95444, r=wesleywiser
[rust.git] / src / test / ui / rfc-1937-termination-trait / termination-trait-test-wrong-type.stderr
1 error[E0277]: `main` has invalid return type `Result<f32, ParseFloatError>`
2   --> $DIR/termination-trait-test-wrong-type.rs:6:1
3    |
4 LL |   #[test]
5    |   ------- in this procedural macro expansion
6 LL | / fn can_parse_zero_as_f32() -> Result<f32, ParseFloatError> {
7 LL | |     "0".parse()
8 LL | | }
9    | |_^ `main` can only return types that implement `Termination`
10    |
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>
16 note: required by a bound in `assert_test_result`
17   --> $SRC_DIR/test/src/lib.rs:LL:COL
18    |
19 LL | pub fn assert_test_result<T: Termination>(result: T) {
20    |                              ^^^^^^^^^^^ required by this bound in `assert_test_result`
21    = note: this error originates in the attribute macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
22
23 error: aborting due to previous error
24
25 For more information about this error, try `rustc --explain E0277`.