mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
16 lines
468 B
Text
16 lines
468 B
Text
error: you don't need to add `&` to both the expression and the patterns
|
|
--> $DIR/ice-2636.rs:12:9
|
|
|
|
|
LL | / match $foo {
|
|
LL | | $ ( & $t => $ord,
|
|
LL | | )*
|
|
LL | | };
|
|
| |_________^
|
|
...
|
|
LL | test_hash!(&a, A => 0, B => 1, C => 2);
|
|
| --------------------------------------- in this macro invocation
|
|
|
|
|
= note: `-D clippy::match-ref-pats` implied by `-D warnings`
|
|
|
|
error: aborting due to previous error
|
|
|