summary refs log tree commit diff
path: root/src/test/ui/wf/wf-struct-bound.stderr
blob: 948693ac6f87d39159077a73bafacf1063c8a174 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
error[E0277]: the trait bound `U: Copy` is not satisfied
  --> $DIR/wf-struct-bound.rs:10:14
   |
LL | trait ExtraCopy<T:Copy> { }
   |                   ---- required by this bound in `ExtraCopy`
...
LL |     where T: ExtraCopy<U>
   |              ^^^^^^^^^^^^ the trait `Copy` is not implemented for `U`
   |
help: consider further restricting type parameter `U`
   |
LL |     where T: ExtraCopy<U>, U: Copy
   |                          ^^^^^^^^^

error: aborting due to previous error

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