2021-04-17 13:56:07 -05:00
|
|
|
error[E0277]: the `?` operator can only be used in a function that returns `Result` or `Option` (or another type that implements `FromResidual`)
|
|
|
|
--> $DIR/try-on-option-diagnostics.rs:7:6
|
2019-10-28 14:04:15 -05:00
|
|
|
|
|
2019-11-24 15:29:40 -06:00
|
|
|
LL | / fn a_function() -> u32 {
|
|
|
|
LL | | let x: Option<u32> = None;
|
|
|
|
LL | | x?;
|
2021-04-17 13:56:07 -05:00
|
|
|
| | ^ cannot use the `?` operator in a function that returns `u32`
|
2019-11-24 15:29:40 -06:00
|
|
|
LL | | 22
|
|
|
|
LL | | }
|
|
|
|
| |_- this function should return `Result` or `Option` to accept `?`
|
2019-10-28 14:04:15 -05:00
|
|
|
|
|
2021-04-17 13:56:07 -05:00
|
|
|
= help: the trait `FromResidual<Option<Infallible>>` is not implemented for `u32`
|
2019-10-28 14:04:15 -05:00
|
|
|
|
2021-04-17 13:56:07 -05:00
|
|
|
error[E0277]: the `?` operator can only be used in a closure that returns `Result` or `Option` (or another type that implements `FromResidual`)
|
|
|
|
--> $DIR/try-on-option-diagnostics.rs:14:10
|
2019-10-28 14:04:15 -05:00
|
|
|
|
|
2019-11-24 15:29:40 -06:00
|
|
|
LL | let a_closure = || {
|
|
|
|
| _____________________-
|
|
|
|
LL | | let x: Option<u32> = None;
|
|
|
|
LL | | x?;
|
2021-04-17 13:56:07 -05:00
|
|
|
| | ^ cannot use the `?` operator in a closure that returns `{integer}`
|
2019-11-24 15:29:40 -06:00
|
|
|
LL | | 22
|
|
|
|
LL | | };
|
|
|
|
| |_____- this function should return `Result` or `Option` to accept `?`
|
2019-10-28 14:04:15 -05:00
|
|
|
|
|
2021-04-17 13:56:07 -05:00
|
|
|
= help: the trait `FromResidual<Option<Infallible>>` is not implemented for `{integer}`
|
2019-10-28 14:04:15 -05:00
|
|
|
|
2021-04-17 13:56:07 -05:00
|
|
|
error[E0277]: the `?` operator can only be used in a method that returns `Result` or `Option` (or another type that implements `FromResidual`)
|
|
|
|
--> $DIR/try-on-option-diagnostics.rs:26:14
|
2020-01-21 14:51:13 -06:00
|
|
|
|
|
|
|
|
LL | / fn a_method() {
|
|
|
|
LL | | let x: Option<u32> = None;
|
|
|
|
LL | | x?;
|
2021-04-17 13:56:07 -05:00
|
|
|
| | ^ cannot use the `?` operator in a method that returns `()`
|
2020-01-21 14:51:13 -06:00
|
|
|
LL | | }
|
|
|
|
| |_________- this function should return `Result` or `Option` to accept `?`
|
|
|
|
|
|
2021-04-17 13:56:07 -05:00
|
|
|
= help: the trait `FromResidual<Option<Infallible>>` is not implemented for `()`
|
2020-01-21 14:51:13 -06:00
|
|
|
|
2021-04-17 13:56:07 -05:00
|
|
|
error[E0277]: the `?` operator can only be used in a trait method that returns `Result` or `Option` (or another type that implements `FromResidual`)
|
|
|
|
--> $DIR/try-on-option-diagnostics.rs:39:14
|
2020-01-21 14:51:13 -06:00
|
|
|
|
|
|
|
|
LL | / fn a_trait_method() {
|
|
|
|
LL | | let x: Option<u32> = None;
|
|
|
|
LL | | x?;
|
2021-04-17 13:56:07 -05:00
|
|
|
| | ^ cannot use the `?` operator in a trait method that returns `()`
|
2020-01-21 14:51:13 -06:00
|
|
|
LL | | }
|
|
|
|
| |_________- this function should return `Result` or `Option` to accept `?`
|
|
|
|
|
|
2021-04-17 13:56:07 -05:00
|
|
|
= help: the trait `FromResidual<Option<Infallible>>` is not implemented for `()`
|
2020-01-21 14:51:13 -06:00
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
2019-10-28 14:04:15 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|