]> git.lizzy.rs Git - rust.git/blob - src/test/ui/associated-types/associated-types-bound-failure.stderr
Rollup merge of #53317 - estebank:abolish-ice, r=oli-obk
[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:27:5
3    |
4 LL |     ToInt::to_int(&g.get()) //~ ERROR E0277
5    |     ^^^^^^^^^^^^^ the trait `ToInt` is not implemented for `<G as GetToInt>::R`
6    |
7    = help: consider adding a `where <G as GetToInt>::R: ToInt` bound
8 note: required by `ToInt::to_int`
9   --> $DIR/associated-types-bound-failure.rs:14:5
10    |
11 LL |     fn to_int(&self) -> isize;
12    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0277`.