2020-09-24 03:06:07 -05:00
warning: to use a constant of type `CustomEq` in a pattern, the constant's initializer must be trivial or `CustomEq` must be annotated with `#[derive(PartialEq, Eq)]`
2020-09-20 10:22:33 -05:00
--> $DIR/custom-eq-branch-warn.rs:29:9
2020-04-07 14:11:29 -05:00
|
LL | BAR_BAZ => panic!(),
| ^^^^^^^
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
2020-09-20 10:22:33 -05:00
= note: for more information, see issue #73448 <https://github.com/rust-lang/rust/issues/73448>
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-09-18 10:55:36 -05:00
= note: `#[warn(nontrivial_structural_match)]` on by default
2020-04-07 14:11:29 -05:00
warning: 1 warning emitted