]> git.lizzy.rs Git - rust.git/blob - src/test/ui/try-trait/bad-interconversion.stderr
Dedup logic and improve output for other types that impl trait
[rust.git] / src / test / ui / try-trait / bad-interconversion.stderr
1 error[E0277]: `?` couldn't convert the error to `u8`
2   --> $DIR/bad-interconversion.rs:6:20
3    |
4 LL | fn result_to_result() -> Result<u64, u8> {
5    |                          --------------- expected `u8` because of this
6 LL |     Ok(Err(123_i32)?)
7    |                    ^ the trait `From<i32>` is not implemented for `u8`
8    |
9    = note: the question mark operation (`?`) implicitly performs a conversion on the error value using the `From` trait
10    = help: the following other types implement trait `From<bool>`:
11              <f32 as From<i16>>
12              <f32 as From<i8>>
13              <f32 as From<u16>>
14              <f32 as From<u8>>
15              <f64 as From<f32>>
16              <f64 as From<i16>>
17              <f64 as From<i32>>
18              <f64 as From<i8>>
19            and 67 others
20    = note: required because of the requirements on the impl of `FromResidual<Result<Infallible, i32>>` for `Result<u64, u8>`
21
22 error[E0277]: the `?` operator can only be used on `Result`s, not `Option`s, in a function that returns `Result`
23   --> $DIR/bad-interconversion.rs:11:12
24    |
25 LL | / fn option_to_result() -> Result<u64, String> {
26 LL | |     Some(3)?;
27    | |            ^ use `.ok_or(...)?` to provide an error compatible with `Result<u64, String>`
28 LL | |
29 LL | |     Ok(10)
30 LL | | }
31    | |_- this function returns a `Result`
32    |
33    = help: the trait `FromResidual<Option<Infallible>>` is not implemented for `Result<u64, String>`
34    = help: the trait `FromResidual<Result<Infallible, E>>` is implemented for `Result<T, F>`
35
36 error[E0277]: the `?` operator can only be used on `Result`s in a function that returns `Result`
37   --> $DIR/bad-interconversion.rs:17:31
38    |
39 LL | / fn control_flow_to_result() -> Result<u64, String> {
40 LL | |     Ok(ControlFlow::Break(123)?)
41    | |                               ^ this `?` produces `ControlFlow<{integer}, Infallible>`, which is incompatible with `Result<u64, String>`
42 LL | |
43 LL | | }
44    | |_- this function returns a `Result`
45    |
46    = help: the trait `FromResidual<ControlFlow<{integer}, Infallible>>` is not implemented for `Result<u64, String>`
47    = help: the trait `FromResidual<Result<Infallible, E>>` is implemented for `Result<T, F>`
48
49 error[E0277]: the `?` operator can only be used on `Option`s, not `Result`s, in a function that returns `Option`
50   --> $DIR/bad-interconversion.rs:22:22
51    |
52 LL | / fn result_to_option() -> Option<u16> {
53 LL | |     Some(Err("hello")?)
54    | |                      ^ use `.ok()?` if you want to discard the `Result<Infallible, &str>` error information
55 LL | |
56 LL | | }
57    | |_- this function returns an `Option`
58    |
59    = help: the trait `FromResidual<Result<Infallible, &str>>` is not implemented for `Option<u16>`
60    = help: the trait `FromResidual` is implemented for `Option<T>`
61
62 error[E0277]: the `?` operator can only be used on `Option`s in a function that returns `Option`
63   --> $DIR/bad-interconversion.rs:27:33
64    |
65 LL | / fn control_flow_to_option() -> Option<u64> {
66 LL | |     Some(ControlFlow::Break(123)?)
67    | |                                 ^ this `?` produces `ControlFlow<{integer}, Infallible>`, which is incompatible with `Option<u64>`
68 LL | |
69 LL | | }
70    | |_- this function returns an `Option`
71    |
72    = help: the trait `FromResidual<ControlFlow<{integer}, Infallible>>` is not implemented for `Option<u64>`
73    = help: the trait `FromResidual` is implemented for `Option<T>`
74
75 error[E0277]: the `?` operator can only be used on `ControlFlow`s in a function that returns `ControlFlow`
76   --> $DIR/bad-interconversion.rs:32:39
77    |
78 LL | / fn result_to_control_flow() -> ControlFlow<String> {
79 LL | |     ControlFlow::Continue(Err("hello")?)
80    | |                                       ^ this `?` produces `Result<Infallible, &str>`, which is incompatible with `ControlFlow<String>`
81 LL | |
82 LL | | }
83    | |_- this function returns a `ControlFlow`
84    |
85    = help: the trait `FromResidual<Result<Infallible, &str>>` is not implemented for `ControlFlow<String>`
86    = help: the trait `FromResidual` is implemented for `ControlFlow<B, C>`
87
88 error[E0277]: the `?` operator can only be used on `ControlFlow`s in a function that returns `ControlFlow`
89   --> $DIR/bad-interconversion.rs:37:12
90    |
91 LL | / fn option_to_control_flow() -> ControlFlow<u64> {
92 LL | |     Some(3)?;
93    | |            ^ this `?` produces `Option<Infallible>`, which is incompatible with `ControlFlow<u64>`
94 LL | |
95 LL | |     ControlFlow::Break(10)
96 LL | | }
97    | |_- this function returns a `ControlFlow`
98    |
99    = help: the trait `FromResidual<Option<Infallible>>` is not implemented for `ControlFlow<u64>`
100    = help: the trait `FromResidual` is implemented for `ControlFlow<B, C>`
101
102 error[E0277]: the `?` operator in a function that returns `ControlFlow<B, _>` can only be used on other `ControlFlow<B, _>`s (with the same Break type)
103   --> $DIR/bad-interconversion.rs:43:29
104    |
105 LL | / fn control_flow_to_control_flow() -> ControlFlow<i64> {
106 LL | |     ControlFlow::Break(4_u8)?;
107    | |                             ^ this `?` produces `ControlFlow<u8, Infallible>`, which is incompatible with `ControlFlow<i64>`
108 LL | |
109 LL | |     ControlFlow::Continue(())
110 LL | | }
111    | |_- this function returns a `ControlFlow`
112    |
113    = help: the trait `FromResidual<ControlFlow<u8, Infallible>>` is not implemented for `ControlFlow<i64>`
114    = note: unlike `Result`, there's no `From`-conversion performed for `ControlFlow`
115    = help: the trait `FromResidual` is implemented for `ControlFlow<B, C>`
116
117 error: aborting due to 8 previous errors
118
119 For more information about this error, try `rustc --explain E0277`.