about summary refs log tree commit diff
path: root/tests/ui/pattern/usefulness/match-ref-ice.stderr
blob: c5f8a95b16bb32fab0785bef23bfc09503c2ea00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error: unreachable pattern
  --> $DIR/match-ref-ice.rs:13:9
   |
LL |         [1, ref _madoka, 3] => (),
   |         ------------------- matches all the relevant values
LL |         [1, 2, 3] => (),
   |         ^^^^^^^^^ no value can reach this
   |
note: the lint level is defined here
  --> $DIR/match-ref-ice.rs:1:9
   |
LL | #![deny(unreachable_patterns)]
   |         ^^^^^^^^^^^^^^^^^^^^

error: aborting due to 1 previous error