]> git.lizzy.rs Git - rust.git/blob - src/test/ui/wf/wf-in-fn-type-ret.stderr
Auto merge of #54720 - davidtwco:issue-51191, r=nikomatsakis
[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:19:5
3    |
4 LL |     x: fn() -> MustBeCopy<T> //~ ERROR E0277
5    |     ^^^^^^^^^^^^^^^^^^^^^^^^ the trait `std::marker::Copy` is not implemented for `T`
6    |
7    = help: consider adding a `where T: std::marker::Copy` bound
8 note: required by `MustBeCopy`
9   --> $DIR/wf-in-fn-type-ret.rs:13:1
10    |
11 LL | struct MustBeCopy<T:Copy> {
12    | ^^^^^^^^^^^^^^^^^^^^^^^^^
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0277`.