@@ -22,13 +22,10 @@ LL | Ok(Err(123_i32)?)
22
22
error[E0277]: the `?` operator can only be used on `Result`s, not `Option`s, in a function that returns `Result`
23
23
--> $DIR/bad-interconversion.rs:11:12
24
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`
25
+ LL | fn option_to_result() -> Result<u64, String> {
26
+ | -------------------------------------------- this function returns a `Result`
27
+ LL | Some(3)?;
28
+ | ^ use `.ok_or(...)?` to provide an error compatible with `Result<u64, String>`
32
29
|
33
30
= help: the trait `FromResidual<Option<Infallible>>` is not implemented for `Result<u64, String>`
34
31
= help: the following other types implement trait `FromResidual<R>`:
@@ -38,12 +35,10 @@ LL | | }
38
35
error[E0277]: the `?` operator can only be used on `Result`s in a function that returns `Result`
39
36
--> $DIR/bad-interconversion.rs:17:31
40
37
|
41
- LL | / fn control_flow_to_result() -> Result<u64, String> {
42
- LL | | Ok(ControlFlow::Break(123)?)
43
- | | ^ this `?` produces `ControlFlow<{integer}, Infallible>`, which is incompatible with `Result<u64, String>`
44
- LL | |
45
- LL | | }
46
- | |_- this function returns a `Result`
38
+ LL | fn control_flow_to_result() -> Result<u64, String> {
39
+ | -------------------------------------------------- this function returns a `Result`
40
+ LL | Ok(ControlFlow::Break(123)?)
41
+ | ^ this `?` produces `ControlFlow<{integer}, Infallible>`, which is incompatible with `Result<u64, String>`
47
42
|
48
43
= help: the trait `FromResidual<ControlFlow<{integer}, Infallible>>` is not implemented for `Result<u64, String>`
49
44
= help: the following other types implement trait `FromResidual<R>`:
@@ -53,12 +48,10 @@ LL | | }
53
48
error[E0277]: the `?` operator can only be used on `Option`s, not `Result`s, in a function that returns `Option`
54
49
--> $DIR/bad-interconversion.rs:22:22
55
50
|
56
- LL | / fn result_to_option() -> Option<u16> {
57
- LL | | Some(Err("hello")?)
58
- | | ^ use `.ok()?` if you want to discard the `Result<Infallible, &str>` error information
59
- LL | |
60
- LL | | }
61
- | |_- this function returns an `Option`
51
+ LL | fn result_to_option() -> Option<u16> {
52
+ | ------------------------------------ this function returns an `Option`
53
+ LL | Some(Err("hello")?)
54
+ | ^ use `.ok()?` if you want to discard the `Result<Infallible, &str>` error information
62
55
|
63
56
= help: the trait `FromResidual<Result<Infallible, &str>>` is not implemented for `Option<u16>`
64
57
= help: the following other types implement trait `FromResidual<R>`:
@@ -68,12 +61,10 @@ LL | | }
68
61
error[E0277]: the `?` operator can only be used on `Option`s in a function that returns `Option`
69
62
--> $DIR/bad-interconversion.rs:27:33
70
63
|
71
- LL | / fn control_flow_to_option() -> Option<u64> {
72
- LL | | Some(ControlFlow::Break(123)?)
73
- | | ^ this `?` produces `ControlFlow<{integer}, Infallible>`, which is incompatible with `Option<u64>`
74
- LL | |
75
- LL | | }
76
- | |_- this function returns an `Option`
64
+ LL | fn control_flow_to_option() -> Option<u64> {
65
+ | ------------------------------------------ this function returns an `Option`
66
+ LL | Some(ControlFlow::Break(123)?)
67
+ | ^ this `?` produces `ControlFlow<{integer}, Infallible>`, which is incompatible with `Option<u64>`
77
68
|
78
69
= help: the trait `FromResidual<ControlFlow<{integer}, Infallible>>` is not implemented for `Option<u64>`
79
70
= help: the following other types implement trait `FromResidual<R>`:
@@ -83,40 +74,32 @@ LL | | }
83
74
error[E0277]: the `?` operator can only be used on `ControlFlow`s in a function that returns `ControlFlow`
84
75
--> $DIR/bad-interconversion.rs:32:39
85
76
|
86
- LL | / fn result_to_control_flow() -> ControlFlow<String> {
87
- LL | | ControlFlow::Continue(Err("hello")?)
88
- | | ^ this `?` produces `Result<Infallible, &str>`, which is incompatible with `ControlFlow<String>`
89
- LL | |
90
- LL | | }
91
- | |_- this function returns a `ControlFlow`
77
+ LL | fn result_to_control_flow() -> ControlFlow<String> {
78
+ | -------------------------------------------------- this function returns a `ControlFlow`
79
+ LL | ControlFlow::Continue(Err("hello")?)
80
+ | ^ this `?` produces `Result<Infallible, &str>`, which is incompatible with `ControlFlow<String>`
92
81
|
93
82
= help: the trait `FromResidual<Result<Infallible, &str>>` is not implemented for `ControlFlow<String>`
94
83
= help: the trait `FromResidual` is implemented for `ControlFlow<B, C>`
95
84
96
85
error[E0277]: the `?` operator can only be used on `ControlFlow`s in a function that returns `ControlFlow`
97
86
--> $DIR/bad-interconversion.rs:37:12
98
87
|
99
- LL | / fn option_to_control_flow() -> ControlFlow<u64> {
100
- LL | | Some(3)?;
101
- | | ^ this `?` produces `Option<Infallible>`, which is incompatible with `ControlFlow<u64>`
102
- LL | |
103
- LL | | ControlFlow::Break(10)
104
- LL | | }
105
- | |_- this function returns a `ControlFlow`
88
+ LL | fn option_to_control_flow() -> ControlFlow<u64> {
89
+ | ----------------------------------------------- this function returns a `ControlFlow`
90
+ LL | Some(3)?;
91
+ | ^ this `?` produces `Option<Infallible>`, which is incompatible with `ControlFlow<u64>`
106
92
|
107
93
= help: the trait `FromResidual<Option<Infallible>>` is not implemented for `ControlFlow<u64>`
108
94
= help: the trait `FromResidual` is implemented for `ControlFlow<B, C>`
109
95
110
96
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)
111
97
--> $DIR/bad-interconversion.rs:43:29
112
98
|
113
- LL | / fn control_flow_to_control_flow() -> ControlFlow<i64> {
114
- LL | | ControlFlow::Break(4_u8)?;
115
- | | ^ this `?` produces `ControlFlow<u8, Infallible>`, which is incompatible with `ControlFlow<i64>`
116
- LL | |
117
- LL | | ControlFlow::Continue(())
118
- LL | | }
119
- | |_- this function returns a `ControlFlow`
99
+ LL | fn control_flow_to_control_flow() -> ControlFlow<i64> {
100
+ | ----------------------------------------------------- this function returns a `ControlFlow`
101
+ LL | ControlFlow::Break(4_u8)?;
102
+ | ^ this `?` produces `ControlFlow<u8, Infallible>`, which is incompatible with `ControlFlow<i64>`
120
103
|
121
104
= help: the trait `FromResidual<ControlFlow<u8, Infallible>>` is not implemented for `ControlFlow<i64>`
122
105
= note: unlike `Result`, there's no `From`-conversion performed for `ControlFlow`
0 commit comments