]> git.lizzy.rs Git - rust.git/blob - tests/ui/traits/impl-bounds-checking.stderr
Auto merge of #105716 - chriswailes:ndk-update-redux, r=pietroalbini
[rust.git] / tests / ui / traits / impl-bounds-checking.stderr
1 error[E0277]: the trait bound `isize: Clone2` is not satisfied
2   --> $DIR/impl-bounds-checking.rs:10:24
3    |
4 LL | impl Getter<isize> for isize {
5    |                        ^^^^^ the trait `Clone2` is not implemented for `isize`
6    |
7 note: required by a bound in `Getter`
8   --> $DIR/impl-bounds-checking.rs:6:17
9    |
10 LL | trait Getter<T: Clone2> {
11    |                 ^^^^^^ required by this bound in `Getter`
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0277`.