2019-04-17 19:50:50 -07:00
|
|
|
error[E0277]: `?` couldn't convert the error to `()`
|
2019-04-17 18:30:26 -07:00
|
|
|
--> $DIR/try-on-option.rs:7:6
|
2017-09-22 10:24:06 -05:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | x?;
|
2019-04-17 18:30:26 -07:00
|
|
|
| ^ the trait `std::convert::From<std::option::NoneError>` is not implemented for `()`
|
2017-09-22 10:24:06 -05:00
|
|
|
|
|
2019-05-17 12:18:56 -07:00
|
|
|
= note: the question mark operation (`?`) implicitly performs a conversion on the error value using the `From` trait
|
2017-09-22 10:24:06 -05:00
|
|
|
= note: required by `std::convert::From::from`
|
|
|
|
|
2018-03-28 11:25:52 +02:00
|
|
|
error[E0277]: the `?` operator can only be used in a function that returns `Result` or `Option` (or another type that implements `std::ops::Try`)
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/try-on-option.rs:13:5
|
2017-09-22 10:24:06 -05:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | x?;
|
2018-01-26 11:34:12 -08:00
|
|
|
| ^^ cannot use the `?` operator in a function that returns `u32`
|
2017-09-22 10:24:06 -05:00
|
|
|
|
|
|
|
|
= help: the trait `std::ops::Try` is not implemented for `u32`
|
|
|
|
= note: required by `std::ops::Try::from_error`
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2018-03-03 15:59:40 +01:00
|
|
|
For more information about this error, try `rustc --explain E0277`.
|