]> git.lizzy.rs Git - rust.git/blob - src/test/ui/pattern/usefulness/slice-pattern-const-3.stderr
Rollup merge of #80298 - PankajChaudhary5:PankajChaudhary, r=GuillaumeGomez
[rust.git] / src / test / ui / pattern / usefulness / slice-pattern-const-3.stderr
1 error: unreachable pattern
2   --> $DIR/slice-pattern-const-3.rs:9:9
3    |
4 LL |         ["4", "5", "6", "7"] => (),
5    |         ^^^^^^^^^^^^^^^^^^^^
6    |
7 note: the lint level is defined here
8   --> $DIR/slice-pattern-const-3.rs:1:9
9    |
10 LL | #![deny(unreachable_patterns)]
11    |         ^^^^^^^^^^^^^^^^^^^^
12
13 error: unreachable pattern
14   --> $DIR/slice-pattern-const-3.rs:15:9
15    |
16 LL |         ["4", "5", "6", "7"] => (),
17    |         ^^^^^^^^^^^^^^^^^^^^
18
19 error: unreachable pattern
20   --> $DIR/slice-pattern-const-3.rs:21:9
21    |
22 LL |         MAGIC_TEST => (),
23    |         ^^^^^^^^^^
24
25 error: unreachable pattern
26   --> $DIR/slice-pattern-const-3.rs:28:9
27    |
28 LL |         FOO => (),
29    |         ^^^
30
31 error: aborting due to 4 previous errors
32