]> git.proxmox.com Git - rustc.git/blob - src/test/ui/trivial-bounds/trivial-bounds-inconsistent-projection-error.stderr
New upstream version 1.49.0~beta.4+dfsg1
[rustc.git] / src / test / 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`.