]> git.lizzy.rs Git - rust.git/blob - tests/ui/trivial-bounds/trivial-bounds-inconsistent-projection-error.stderr
Rollup merge of #106618 - jmillikin:os-net-rustdoc-wasm32, r=JohnTitor
[rust.git] / tests / ui / trivial-bounds / trivial-bounds-inconsistent-projection-error.stderr
1 error[E0308]: mismatched types
2   --> $DIR/trivial-bounds-inconsistent-projection-error.rs:20:5
3    |
4 LL | fn global_bound_is_hidden() -> u8
5    |                                -- expected `u8` because of return type
6 ...
7 LL |     B::get_x()
8    |     ^^^^^^^^^^ expected `u8`, found `i32`
9    |
10 help: you can convert an `i32` to a `u8` and panic if the converted value doesn't fit
11    |
12 LL |     B::get_x().try_into().unwrap()
13    |               ++++++++++++++++++++
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0308`.