]> git.lizzy.rs Git - rust.git/blob - src/test/ui/wf/wf-in-fn-type-ret.stderr
e203058250790776ea76103ab6bb71afdaaec627
[rust.git] / src / test / ui / wf / wf-in-fn-type-ret.stderr
1 error[E0277]: the trait bound `T: std::marker::Copy` is not satisfied
2   --> $DIR/wf-in-fn-type-ret.rs:9:5
3    |
4 LL | struct MustBeCopy<T:Copy> {
5    |                     ---- required by this bound in `MustBeCopy`
6 ...
7 LL |     x: fn() -> MustBeCopy<T>
8    |     ^^^^^^^^^^^^^^^^^^^^^^^^ the trait `std::marker::Copy` is not implemented for `T`
9    |
10 help: consider restricting type parameter `T`
11    |
12 LL | struct Foo<T: std::marker::Copy> {
13    |             ^^^^^^^^^^^^^^^^^^^
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0277`.