2020-09-20 10:22:33 -05:00
warning: to use a constant of type `&&B` in a pattern, the constant's initializer must be trivial or all types in the constant must be annotated with `#[derive(PartialEq, Eq)]`
2019-07-03 09:54:08 -05:00
--> $DIR/issue-62307-match-ref-ref-forbidden-without-eq.rs:31:9
|
LL | RR_B1 => { println!("CLAIM RR0: {:?} matches {:?}", RR_B1, RR_B0); }
| ^^^^^
|
2020-01-22 17:57:38 -06:00
note: the lint level is defined here
2020-09-20 10:22:33 -05:00
--> $DIR/issue-62307-match-ref-ref-forbidden-without-eq.rs:13:36
2019-07-12 08:27:21 -05:00
|
2020-09-20 10:22:33 -05:00
LL | #![warn(indirect_structural_match, nontrivial_structural_match)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
2019-07-03 09:54:08 -05:00
= 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>
2019-07-03 09:54:08 -05:00
2020-09-20 10:22:33 -05:00
warning: to use a constant of type `&&B` in a pattern, the constant's initializer must be trivial or all types in the constant must be annotated with `#[derive(PartialEq, Eq)]`
2019-07-03 09:54:08 -05:00
--> $DIR/issue-62307-match-ref-ref-forbidden-without-eq.rs:38:9
|
LL | RR_B1 => { println!("CLAIM RR1: {:?} matches {:?}", RR_B1, RR_B1); }
| ^^^^^
|
= 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>
2019-07-03 09:54:08 -05:00
2020-03-11 10:30:09 -05:00
warning: 2 warnings emitted