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

error: aborting due to previous error

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