]> git.proxmox.com Git - rustc.git/blame - src/test/ui/trivial-bounds/trivial-bounds-inconsistent-projection-error.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / trivial-bounds / trivial-bounds-inconsistent-projection-error.stderr
CommitLineData
94b46f34 1error[E0308]: mismatched types
0731742a 2 --> $DIR/trivial-bounds-inconsistent-projection-error.rs:20:5
94b46f34
XL
3 |
4LL | fn global_bound_is_hidden() -> u8
5 | -- expected `u8` because of return type
6...
532ac7d7 7LL | B::get_x()
60c5eb7d 8 | ^^^^^^^^^^ expected `u8`, found `i32`
e74abb32 9 |
48663c56
XL
10help: you can convert an `i32` to `u8` and panic if the converted value wouldn't fit
11 |
12LL | B::get_x().try_into().unwrap()
13 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
94b46f34
XL
14
15error: aborting due to previous error
16
17For more information about this error, try `rustc --explain E0308`.