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