]> git.proxmox.com Git - rustc.git/blame - src/test/ui/wf/wf-in-fn-type-arg.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / wf / wf-in-fn-type-arg.stderr
CommitLineData
1b1a35ee 1error[E0277]: the trait bound `T: Copy` is not satisfied
3dfed10e 2 --> $DIR/wf-in-fn-type-arg.rs:9:8
b7449926 3 |
e1599b0c 4LL | struct MustBeCopy<T:Copy> {
ba9703b0 5 | ---- required by this bound in `MustBeCopy`
e1599b0c 6...
532ac7d7 7LL | x: fn(MustBeCopy<T>)
1b1a35ee 8 | ^^^^^^^^^^^^^^^^^ the trait `Copy` is not implemented for `T`
74b04a01 9 |
ba9703b0 10help: consider restricting type parameter `T`
74b04a01 11 |
1b1a35ee
XL
12LL | struct Bar<T: Copy> {
13 | ^^^^^^
b7449926
XL
14
15error: aborting due to previous error
16
17For more information about this error, try `rustc --explain E0277`.