mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
15 lines
549 B
Plaintext
15 lines
549 B
Plaintext
error: to use a constant of type `CustomEq` in a pattern, `CustomEq` must be annotated with `#[derive(PartialEq, Eq)]`
|
|
--> $DIR/cross-crate-fail.rs:13:9
|
|
|
|
|
LL | consts::SOME => panic!(),
|
|
| ^^^^^^^^^^^^
|
|
|
|
error: to use a constant of type `CustomEq` in a pattern, `CustomEq` must be annotated with `#[derive(PartialEq, Eq)]`
|
|
--> $DIR/cross-crate-fail.rs:20:9
|
|
|
|
|
LL | <Defaulted as consts::AssocConst>::SOME => panic!(),
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|