]> git.lizzy.rs Git - rust.git/blob - src/test/ui/try-on-option-diagnostics.stderr
Remove ord lang item
[rust.git] / src / test / ui / try-on-option-diagnostics.stderr
1 error[E0277]: the `?` operator can only be used in a function that returns `Result` or `Option` (or another type that implements `std::ops::Try`)
2   --> $DIR/try-on-option-diagnostics.rs:7:5
3    |
4 LL |     x?;
5    |     ^^ cannot use the `?` operator in a function that returns `u32`
6    |
7    = help: the trait `std::ops::Try` is not implemented for `u32`
8    = note: required by `std::ops::Try::from_error`
9
10 error[E0277]: the `?` operator can only be used in a closure that returns `Result` or `Option` (or another type that implements `std::ops::Try`)
11   --> $DIR/try-on-option-diagnostics.rs:14:9
12    |
13 LL |         x?;
14    |         ^^ cannot use the `?` operator in a closure that returns `{integer}`
15    |
16    = help: the trait `std::ops::Try` is not implemented for `{integer}`
17    = note: required by `std::ops::Try::from_error`
18
19 error: aborting due to 2 previous errors
20
21 For more information about this error, try `rustc --explain E0277`.