]> git.proxmox.com Git - rustc.git/blob - src/test/ui/associated-types/associated-types-bound-failure.stderr
New upstream version 1.39.0+dfsg1
[rustc.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:17: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 adding a `where <G as GetToInt>::R: ToInt` bound
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0277`.