]> git.lizzy.rs Git - rust.git/blob - src/test/ui/traits/impl-bounds-checking.stderr
Rollup merge of #82179 - mbartlett21:patch-5, r=joshtriplett
[rust.git] / src / test / ui / traits / 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`.