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

13 lines
390 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
error: aborting due to previous error
For more information about this error, try `rustc --explain E0308`.