]> git.proxmox.com Git - rustc.git/blame - src/test/ui/wf/wf-inherent-impl-where-clause.stderr
New upstream version 1.40.0+dfsg1
[rustc.git] / src / test / ui / wf / wf-inherent-impl-where-clause.stderr
CommitLineData
b7449926 1error[E0277]: the trait bound `U: std::marker::Copy` is not satisfied
0731742a 2 --> $DIR/wf-inherent-impl-where-clause.rs:11:1
b7449926 3 |
e1599b0c
XL
4LL | trait ExtraCopy<T:Copy> { }
5 | ----------------------- required by `ExtraCopy`
6...
e74abb32
XL
7LL | impl<T,U> Foo<T,U> where T: ExtraCopy<U>
8 | ^ - help: consider further restricting type parameter `U`: `, U: std::marker::Copy`
9 | _|
10 | |
b7449926
XL
11LL | | {
12LL | | }
13 | |_^ the trait `std::marker::Copy` is not implemented for `U`
b7449926
XL
14
15error: aborting due to previous error
16
17For more information about this error, try `rustc --explain E0277`.