rust/tests/ui/ice-2636.stderr

17 lines
468 B
Plaintext
Raw Normal View History

2018-11-16 00:03:41 +08:00
error: you don't need to add `&` to both the expression and the patterns
--> $DIR/ice-2636.rs:12:9
2018-11-16 00:03:41 +08:00
|
2018-12-27 23:57:55 +08:00
LL | / match $foo {
LL | | $ ( & $t => $ord,
LL | | )*
LL | | };
2018-11-16 00:03:41 +08:00
| |_________^
...
2018-12-27 23:57:55 +08:00
LL | test_hash!(&a, A => 0, B => 1, C => 2);
2018-11-16 00:03:41 +08:00
| --------------------------------------- in this macro invocation
|
= note: `-D clippy::match-ref-pats` implied by `-D warnings`
error: aborting due to previous error