You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error[E0277]: the `?` operator can only be used in an async block that returns `Result` or `Option` (or another type that implements `std::ops::Try`)
2
+
--> $DIR/try-on-option-in-async.rs:8:9
3
+
|
4
+
LL | x?;
5
+
| ^^ cannot use the `?` operator in an async block that returns `{integer}`
6
+
|
7
+
= help: the trait `std::ops::Try` is not implemented for `{integer}`
8
+
= note: required by `std::ops::Try::from_error`
9
+
10
+
error[E0277]: the `?` operator can only be used in an async closure that returns `Result` or `Option` (or another type that implements `std::ops::Try`)
11
+
--> $DIR/try-on-option-in-async.rs:16:9
12
+
|
13
+
LL | x?;
14
+
| ^^ cannot use the `?` operator in an async closure that returns `u32`
15
+
|
16
+
= help: the trait `std::ops::Try` is not implemented for `u32`
17
+
= note: required by `std::ops::Try::from_error`
18
+
19
+
error[E0277]: the `?` operator can only be used in an async function that returns `Result` or `Option` (or another type that implements `std::ops::Try`)
20
+
--> $DIR/try-on-option-in-async.rs:25:5
21
+
|
22
+
LL | x?;
23
+
| ^^ cannot use the `?` operator in an async function that returns `u32`
24
+
|
25
+
= help: the trait `std::ops::Try` is not implemented for `u32`
26
+
= note: required by `std::ops::Try::from_error`
27
+
28
+
error: aborting due to 3 previous errors
29
+
30
+
For more information about this error, try `rustc --explain E0277`.
0 commit comments