]> git.lizzy.rs Git - rust.git/blob - src/test/ui/try-on-option.stderr
Rollup merge of #53317 - estebank:abolish-ice, r=oli-obk
[rust.git] / src / test / ui / try-on-option.stderr
1 error[E0277]: the trait bound `(): std::convert::From<std::option::NoneError>` is not satisfied
2   --> $DIR/try-on-option.rs:17:5
3    |
4 LL |     x?; //~ the trait bound
5    |     ^^ the trait `std::convert::From<std::option::NoneError>` is not implemented for `()`
6    |
7    = note: required by `std::convert::From::from`
8
9 error[E0277]: the `?` operator can only be used in a function that returns `Result` or `Option` (or another type that implements `std::ops::Try`)
10   --> $DIR/try-on-option.rs:23:5
11    |
12 LL |     x?; //~ the `?` operator
13    |     ^^ cannot use the `?` operator in a function that returns `u32`
14    |
15    = help: the trait `std::ops::Try` is not implemented for `u32`
16    = note: required by `std::ops::Try::from_error`
17
18 error: aborting due to 2 previous errors
19
20 For more information about this error, try `rustc --explain E0277`.