2018-06-08 16:00:26 +00:00
|
|
|
error[E0308]: mismatched types
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/trivial-bounds-inconsistent-projection-error.rs:20:5
|
2018-06-08 16:00:26 +00:00
|
|
|
|
|
|
|
|
LL | fn global_bound_is_hidden() -> u8
|
|
|
|
| -- expected `u8` because of return type
|
|
|
|
...
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | B::get_x()
|
2019-11-15 17:37:01 +00:00
|
|
|
| ^^^^^^^^^^ expected `u8`, found `i32`
|
2019-10-24 05:20:58 +00:00
|
|
|
|
|
2020-09-30 02:27:58 +00:00
|
|
|
help: you can convert an `i32` to a `u8` and panic if the converted value doesn't fit
|
2019-04-21 22:44:23 +00:00
|
|
|
|
|
|
|
|
LL | B::get_x().try_into().unwrap()
|
2021-08-10 10:53:43 +00:00
|
|
|
| ++++++++++++++++++++
|
2018-06-08 16:00:26 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-06-08 16:00:26 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|