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

22 lines
877 B
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
|
2019-03-09 15:03:44 +03:00
LL | x?;
| ^ the trait `std::convert::From<std::option::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
2017-09-22 10:24:06 -05:00
= note: required by `std::convert::From::from`
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?;
| ^^ 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`.