]> git.lizzy.rs Git - rust.git/blob - src/test/ui/associated-types/associated-types-bound-failure.stderr
feat(rustdoc): open sidebar menu when links inside it are focused
[rust.git] / src / test / ui / associated-types / associated-types-bound-failure.stderr
1 error[E0277]: the trait bound `<G as GetToInt>::R: ToInt` is not satisfied
2   --> $DIR/associated-types-bound-failure.rs:19:19
3    |
4 LL |     fn to_int(&self) -> isize;
5    |     -------------------------- required by `ToInt::to_int`
6 ...
7 LL |     ToInt::to_int(&g.get())
8    |                   ^^^^^^^^ the trait `ToInt` is not implemented for `<G as GetToInt>::R`
9    |
10 help: consider further restricting the associated type
11    |
12 LL |     where G : GetToInt, <G as GetToInt>::R: ToInt
13    |                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0277`.