]> git.proxmox.com Git - rustc.git/blob - src/test/ui/impl-bounds-checking.stderr
New upstream version 1.51.0+dfsg1
[rustc.git] / src / test / ui / impl-bounds-checking.stderr
1 error[E0277]: the trait bound `isize: Clone2` is not satisfied
2 --> $DIR/impl-bounds-checking.rs:10:6
3 |
4 LL | trait Getter<T: Clone2> {
5 | ------ required by this bound in `Getter`
6 ...
7 LL | impl Getter<isize> for isize {
8 | ^^^^^^^^^^^^^ the trait `Clone2` is not implemented for `isize`
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0277`.