]> git.lizzy.rs Git - rust.git/blob - src/test/ui/associated-types/associated-types-bound-failure.stderr
Auto merge of #103600 - compiler-errors:early-binder-nits, r=spastorino
[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 |     ToInt::to_int(&g.get())
5    |     ------------- ^^^^^^^^ the trait `ToInt` is not implemented for `<G as GetToInt>::R`
6    |     |
7    |     required by a bound introduced by this call
8    |
9 help: consider further restricting the associated type
10    |
11 LL |     where G : GetToInt, <G as GetToInt>::R: ToInt
12    |                       +++++++++++++++++++++++++++
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0277`.