about summary refs log tree commit diff
path: root/src/test/ui/match/match-byte-array-patterns.stderr
blob: b28646b50cf01e15b4acf33b9c26eb21ec616d75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
error: unreachable pattern
  --> $DIR/match-byte-array-patterns.rs:9:9
   |
LL |         &[0x41, 0x41, 0x41, 0x41] => {}
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^
   |
note: lint level defined here
  --> $DIR/match-byte-array-patterns.rs:2:9
   |
LL | #![deny(unreachable_patterns)]
   |         ^^^^^^^^^^^^^^^^^^^^

error: unreachable pattern
  --> $DIR/match-byte-array-patterns.rs:15:9
   |
LL |         b"AAAA" => {},
   |         ^^^^^^^

error: unreachable pattern
  --> $DIR/match-byte-array-patterns.rs:21:9
   |
LL |         b"AAAA" => {},
   |         ^^^^^^^

error: unreachable pattern
  --> $DIR/match-byte-array-patterns.rs:27:9
   |
LL |         b"AAAA" => {},
   |         ^^^^^^^

error: unreachable pattern
  --> $DIR/match-byte-array-patterns.rs:35:9
   |
LL |         &[0x41, 0x41, 0x41, 0x41] => {}
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^

error: unreachable pattern
  --> $DIR/match-byte-array-patterns.rs:41:9
   |
LL |         b"AAAA" => {},
   |         ^^^^^^^

error: unreachable pattern
  --> $DIR/match-byte-array-patterns.rs:47:9
   |
LL |         b"AAAA" => {},
   |         ^^^^^^^

error: unreachable pattern
  --> $DIR/match-byte-array-patterns.rs:53:9
   |
LL |         b"AAAA" => {},
   |         ^^^^^^^

error: aborting due to 8 previous errors