]> git.lizzy.rs Git - rust.git/blob - src/test/ui/associated-types/associated-types-bound-failure.stderr
Rollup merge of #88305 - ijackson:exitstatus-debug, r=dtolnay
[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 note: required by `ToInt::to_int`
10   --> $DIR/associated-types-bound-failure.rs:6:5
11    |
12 LL |     fn to_int(&self) -> isize;
13    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^
14 help: consider further restricting the associated type
15    |
16 LL |     where G : GetToInt, <G as GetToInt>::R: ToInt
17    |                       +++++++++++++++++++++++++++
18
19 error: aborting due to previous error
20
21 For more information about this error, try `rustc --explain E0277`.