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