blob: e9c28248044f9ad0f5038319e9b6b8fbdf3470f7 [file] [log] [blame]
error[E0308]: mismatched types
--> $DIR/trivial-bounds-inconsistent-projection-error.rs:20:5
|
LL | fn global_bound_is_hidden() -> u8
| -- expected `u8` because of return type
...
LL | B::get_x()
| ^^^^^^^^^^ expected u8, found i32
help: you can convert an `i32` to `u8` and panic if the converted value wouldn't fit
|
LL | B::get_x().try_into().unwrap()
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: aborting due to previous error
For more information about this error, try `rustc --explain E0308`.