summaryrefslogtreecommitdiff
path: root/tests/ui/associated-inherent-types/generic-associated-types-bad.item.stderr
blob: 464b59c249fe1f232e3695be86d4999e64a4723e (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/generic-associated-types-bad.rs:16:10
   |
LL | const _: Ty::Pr<String> = String::new();
   |          ^^^^^^^^^^^^^^ the trait `Copy` is not implemented for `String`
   |
note: required by a bound in `Ty::Pr`
  --> $DIR/generic-associated-types-bad.rs:10:16
   |
LL |     type Pr<T: Copy> = T;
   |                ^^^^ required by this bound in `Ty::Pr`

error: aborting due to previous error

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