rust/src/test/ui/trivial-bounds/trivial-bounds-inconsistent-projection-error.stderr

18 lines
565 B
Plaintext
Raw Normal View History

error[E0308]: mismatched types
2018-12-25 08:56:47 -07:00
--> $DIR/trivial-bounds-inconsistent-projection-error.rs:20:5
|
LL | fn global_bound_is_hidden() -> u8
| -- expected `u8` because of return type
...
2019-03-09 15:03:44 +03:00
LL | B::get_x()
| ^^^^^^^^^^ expected u8, found i32
|
2019-05-03 10:41:26 -07:00
help: you can convert an `i32` to `u8` and panic if the converted value wouldn't fit
2019-04-21 15:44:23 -07:00
|
LL | B::get_x().try_into().unwrap()
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: aborting due to previous error
For more information about this error, try `rustc --explain E0308`.