rust/src/test/ui/wf/wf-in-fn-ret.stderr

18 lines
563 B
Plaintext
Raw Normal View History

error[E0277]: the trait bound `T: Copy` is not satisfied
--> $DIR/wf-in-fn-ret.rs:10:16
2018-08-08 07:28:26 -05:00
|
LL | struct MustBeCopy<T:Copy> {
2020-04-06 00:15:06 -05:00
| ---- required by this bound in `MustBeCopy`
...
LL | fn bar<T>() -> MustBeCopy<T>
| ^^^^^^^^^^^^^ the trait `Copy` is not implemented for `T`
|
help: consider restricting type parameter `T`
|
LL | fn bar<T: std::marker::Copy>() -> MustBeCopy<T>
| ^^^^^^^^^^^^^^^^^^^
2018-08-08 07:28:26 -05:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.