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