summaryrefslogtreecommitdiffstats
path: root/src/test/ui/generic-associated-types/own-bound-span.stderr
blob: 8ab8ea623b2c93d674d096da4b55fe3f19c923c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0277]: the trait bound `String: Copy` is not satisfied
  --> $DIR/own-bound-span.rs:14:12
   |
LL |     let _: <S as D>::P<String>;
   |            ^^^^^^^^^^^^^^^^^^^ the trait `Copy` is not implemented for `String`
   |
note: required by a bound in `D::P`
  --> $DIR/own-bound-span.rs:4:15
   |
LL |     type P<T: Copy>;
   |               ^^^^ required by this bound in `D::P`

error: aborting due to previous error

For more information about this error, try `rustc --explain E0277`.