]> git.proxmox.com Git - rustc.git/blob - src/test/ui/pattern/usefulness/slice-pattern-const-2.stderr
dcad11a38a7ebadd8bc0b6350afd8f355a450b1c
[rustc.git] / src / test / ui / pattern / usefulness / slice-pattern-const-2.stderr
1 error: unreachable pattern
2 --> $DIR/slice-pattern-const-2.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-2.rs:1:9
9 |
10 LL | #![deny(unreachable_patterns)]
11 | ^^^^^^^^^^^^^^^^^^^^
12
13 error: unreachable pattern
14 --> $DIR/slice-pattern-const-2.rs:15:9
15 |
16 LL | [4, 5, 6, 7] => (),
17 | ^^^^^^^^^^^^
18
19 error: unreachable pattern
20 --> $DIR/slice-pattern-const-2.rs:21:9
21 |
22 LL | MAGIC_TEST => (),
23 | ^^^^^^^^^^
24
25 error: unreachable pattern
26 --> $DIR/slice-pattern-const-2.rs:28:9
27 |
28 LL | FOO => (),
29 | ^^^
30
31 error: aborting due to 4 previous errors
32