rust/src/test/ui/try-on-option.stderr

34 lines
1.3 KiB
Plaintext
Raw Normal View History

error[E0277]: `?` couldn't convert the error to `()`
--> $DIR/try-on-option.rs:7:6
2017-09-22 10:24:06 -05:00
|
LL | fn foo() -> Result<u32, ()> {
| --------------- expected `()` because of this
LL | let x: Option<u32> = None;
2019-03-09 15:03:44 +03:00
LL | x?;
| ^ the trait `From<NoneError>` is not implemented for `()`
2017-09-22 10:24:06 -05:00
|
= note: the question mark operation (`?`) implicitly performs a conversion on the error value using the `From` trait
= note: required by `from`
help: consider converting the `Option<T>` into a `Result<T, _>` using `Option::ok_or` or `Option::ok_or_else`
|
LL | x.ok_or_else(|| /* error value */)?;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2017-09-22 10:24:06 -05:00
error[E0277]: the `?` operator can only be used in a function that returns `Result` or `Option` (or another type that implements `Try`)
2018-12-25 08:56:47 -07:00
--> $DIR/try-on-option.rs:13:5
2017-09-22 10:24:06 -05:00
|
LL | / fn bar() -> u32 {
LL | | let x: Option<u32> = None;
LL | | x?;
| | ^^ cannot use the `?` operator in a function that returns `u32`
LL | | 22
LL | | }
| |_- this function should return `Result` or `Option` to accept `?`
2017-09-22 10:24:06 -05:00
|
= help: the trait `Try` is not implemented for `u32`
= note: required by `from_error`
2017-09-22 10:24:06 -05:00
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`.