]> git.proxmox.com Git - rustc.git/blame - src/test/ui/wf/wf-trait-default-fn-where-clause.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / wf / wf-trait-default-fn-where-clause.stderr
CommitLineData
1b1a35ee 1error[E0277]: the trait bound `Self: Eq` is not satisfied
74b04a01 2 --> $DIR/wf-trait-default-fn-where-clause.rs:11:31
b7449926 3 |
74b04a01 4LL | trait Bar<T:Eq+?Sized> { }
ba9703b0 5 | -- required by this bound in `Bar`
e1599b0c 6...
74b04a01 7LL | fn bar<A>(&self) where A: Bar<Self> {
1b1a35ee 8 | ^^^^^^^^^ the trait `Eq` is not implemented for `Self`
f9f354fc
XL
9 |
10help: consider further restricting `Self`
11 |
1b1a35ee
XL
12LL | fn bar<A>(&self) where A: Bar<Self>, Self: Eq {
13 | ^^^^^^^^^^
b7449926
XL
14
15error: aborting due to previous error
16
17For more information about this error, try `rustc --explain E0277`.