2022-11-17 09:30:42 -06:00
|
|
|
error: to use a constant of type `MyType` in a pattern, `MyType` must be annotated with `#[derive(PartialEq, Eq)]`
|
|
|
|
--> $DIR/const-partial_eq-fallback-ice.rs:14:12
|
|
|
|
|
|
|
|
|
LL | if let CONSTANT = &&MyType {
|
|
|
|
| ^^^^^^^^
|
2023-03-27 09:14:08 -05:00
|
|
|
|
|
|
|
|
= note: the traits must be derived, manual `impl`s are not sufficient
|
|
|
|
= note: see https://doc.rust-lang.org/stable/std/marker/trait.StructuralEq.html for details
|
2022-11-17 09:30:42 -06:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|