]> git.lizzy.rs Git - rust.git/blob - src/test/ui/missing/missing-derivable-attr.stderr
Rollup merge of #57107 - mjbshaw:thread_local_test, r=nikomatsakis
[rust.git] / src / test / ui / missing / missing-derivable-attr.stderr
1 error[E0046]: not all trait items implemented, missing: `eq`
2   --> $DIR/missing-derivable-attr.rs:13:1
3    |
4 LL |     fn eq(&self, other: &Self) -> bool;
5    |     ----------------------------------- `eq` from trait
6 ...
7 LL | impl MyEq for A {}  //~ ERROR not all trait items implemented, missing: `eq`
8    | ^^^^^^^^^^^^^^^ missing `eq` in implementation
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0046`.