summaryrefslogtreecommitdiffstats
path: root/tests/ui/trivial-bounds/trivial-bounds-inconsistent-projection-error.stderr
blob: 26679e713803e01925e4b37ff394fff69b7deb33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 a `u8` and panic if the converted value doesn'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`.