|
1 | 1 | error: unreachable pattern
|
2 |
| - --> $DIR/reachability.rs:16:17 |
| 2 | + --> $DIR/reachability.rs:17:17 |
3 | 3 | |
|
4 | 4 | LL | m!(0u8, 42, 42);
|
5 | 5 | | ^^
|
6 | 6 | |
|
7 | 7 | note: the lint level is defined here
|
8 |
| - --> $DIR/reachability.rs:2:9 |
| 8 | + --> $DIR/reachability.rs:3:9 |
9 | 9 | |
|
10 | 10 | LL | #![deny(unreachable_patterns)]
|
11 | 11 | | ^^^^^^^^^^^^^^^^^^^^
|
12 | 12 |
|
13 | 13 | error: unreachable pattern
|
14 |
| - --> $DIR/reachability.rs:20:22 |
| 14 | + --> $DIR/reachability.rs:21:22 |
15 | 15 | |
|
16 | 16 | LL | m!(0u8, 20..=30, 20);
|
17 | 17 | | ^^
|
18 | 18 |
|
19 | 19 | error: unreachable pattern
|
20 |
| - --> $DIR/reachability.rs:21:22 |
| 20 | + --> $DIR/reachability.rs:22:22 |
21 | 21 | |
|
22 | 22 | LL | m!(0u8, 20..=30, 21);
|
23 | 23 | | ^^
|
24 | 24 |
|
25 | 25 | error: unreachable pattern
|
26 |
| - --> $DIR/reachability.rs:22:22 |
| 26 | + --> $DIR/reachability.rs:23:22 |
27 | 27 | |
|
28 | 28 | LL | m!(0u8, 20..=30, 25);
|
29 | 29 | | ^^
|
30 | 30 |
|
31 | 31 | error: unreachable pattern
|
32 |
| - --> $DIR/reachability.rs:23:22 |
| 32 | + --> $DIR/reachability.rs:24:22 |
33 | 33 | |
|
34 | 34 | LL | m!(0u8, 20..=30, 29);
|
35 | 35 | | ^^
|
36 | 36 |
|
37 | 37 | error: unreachable pattern
|
38 |
| - --> $DIR/reachability.rs:24:22 |
| 38 | + --> $DIR/reachability.rs:25:22 |
39 | 39 | |
|
40 | 40 | LL | m!(0u8, 20..=30, 30);
|
41 | 41 | | ^^
|
42 | 42 |
|
43 | 43 | error: unreachable pattern
|
44 |
| - --> $DIR/reachability.rs:27:21 |
| 44 | + --> $DIR/reachability.rs:28:21 |
45 | 45 | |
|
46 | 46 | LL | m!(0u8, 20..30, 20);
|
47 | 47 | | ^^
|
48 | 48 |
|
49 | 49 | error: unreachable pattern
|
50 |
| - --> $DIR/reachability.rs:28:21 |
| 50 | + --> $DIR/reachability.rs:29:21 |
51 | 51 | |
|
52 | 52 | LL | m!(0u8, 20..30, 21);
|
53 | 53 | | ^^
|
54 | 54 |
|
55 | 55 | error: unreachable pattern
|
56 |
| - --> $DIR/reachability.rs:29:21 |
| 56 | + --> $DIR/reachability.rs:30:21 |
57 | 57 | |
|
58 | 58 | LL | m!(0u8, 20..30, 25);
|
59 | 59 | | ^^
|
60 | 60 |
|
61 | 61 | error: unreachable pattern
|
62 |
| - --> $DIR/reachability.rs:30:21 |
| 62 | + --> $DIR/reachability.rs:31:21 |
63 | 63 | |
|
64 | 64 | LL | m!(0u8, 20..30, 29);
|
65 | 65 | | ^^
|
66 | 66 |
|
67 | 67 | error: unreachable pattern
|
68 |
| - --> $DIR/reachability.rs:34:22 |
| 68 | + --> $DIR/reachability.rs:35:22 |
69 | 69 | |
|
70 | 70 | LL | m!(0u8, 20..=30, 20..=30);
|
71 | 71 | | ^^^^^^^
|
72 | 72 |
|
73 | 73 | error: unreachable pattern
|
74 |
| - --> $DIR/reachability.rs:35:22 |
| 74 | + --> $DIR/reachability.rs:36:22 |
75 | 75 | |
|
76 | 76 | LL | m!(0u8, 20.. 30, 20.. 30);
|
77 | 77 | | ^^^^^^^
|
78 | 78 |
|
79 | 79 | error: unreachable pattern
|
80 |
| - --> $DIR/reachability.rs:36:22 |
| 80 | + --> $DIR/reachability.rs:37:22 |
81 | 81 | |
|
82 | 82 | LL | m!(0u8, 20..=30, 20.. 30);
|
83 | 83 | | ^^^^^^^
|
84 | 84 |
|
85 | 85 | error: unreachable pattern
|
86 |
| - --> $DIR/reachability.rs:38:22 |
| 86 | + --> $DIR/reachability.rs:39:22 |
87 | 87 | |
|
88 | 88 | LL | m!(0u8, 20..=30, 21..=30);
|
89 | 89 | | ^^^^^^^
|
90 | 90 |
|
91 | 91 | error: unreachable pattern
|
92 |
| - --> $DIR/reachability.rs:39:22 |
| 92 | + --> $DIR/reachability.rs:40:22 |
93 | 93 | |
|
94 | 94 | LL | m!(0u8, 20..=30, 20..=29);
|
95 | 95 | | ^^^^^^^
|
96 | 96 |
|
97 | 97 | error: unreachable pattern
|
98 |
| - --> $DIR/reachability.rs:41:24 |
| 98 | + --> $DIR/reachability.rs:42:24 |
99 | 99 | |
|
100 | 100 | LL | m!('a', 'A'..='z', 'a'..='z');
|
101 | 101 | | ^^^^^^^^^
|
102 | 102 |
|
103 | 103 | error: unreachable pattern
|
104 |
| - --> $DIR/reachability.rs:48:9 |
| 104 | + --> $DIR/reachability.rs:49:9 |
105 | 105 | |
|
106 | 106 | LL | 5..=8 => {},
|
107 | 107 | | ^^^^^
|
108 | 108 |
|
109 | 109 | error: unreachable pattern
|
110 |
| - --> $DIR/reachability.rs:54:9 |
| 110 | + --> $DIR/reachability.rs:55:9 |
111 | 111 | |
|
112 | 112 | LL | 5..15 => {},
|
113 | 113 | | ^^^^^
|
114 | 114 |
|
115 | 115 | error: unreachable pattern
|
116 |
| - --> $DIR/reachability.rs:61:9 |
| 116 | + --> $DIR/reachability.rs:62:9 |
117 | 117 | |
|
118 | 118 | LL | 5..25 => {},
|
119 | 119 | | ^^^^^
|
120 | 120 |
|
121 | 121 | error: unreachable pattern
|
122 |
| - --> $DIR/reachability.rs:69:9 |
| 122 | + --> $DIR/reachability.rs:70:9 |
123 | 123 | |
|
124 | 124 | LL | 5..25 => {},
|
125 | 125 | | ^^^^^
|
126 | 126 |
|
127 | 127 | error: unreachable pattern
|
128 |
| - --> $DIR/reachability.rs:75:9 |
| 128 | + --> $DIR/reachability.rs:76:9 |
129 | 129 | |
|
130 | 130 | LL | 5..15 => {},
|
131 | 131 | | ^^^^^
|
132 | 132 |
|
133 | 133 | error: unreachable pattern
|
134 |
| - --> $DIR/reachability.rs:82:9 |
| 134 | + --> $DIR/reachability.rs:83:9 |
135 | 135 | |
|
136 | 136 | LL | '\u{D7FF}'..='\u{E000}' => {},
|
137 | 137 | | ^^^^^^^^^^^^^^^^^^^^^^^
|
138 | 138 |
|
139 | 139 | error: unreachable pattern
|
140 |
| - --> $DIR/reachability.rs:103:9 |
| 140 | + --> $DIR/reachability.rs:104:9 |
141 | 141 | |
|
142 | 142 | LL | &FOO => {}
|
143 | 143 | | ^^^^
|
144 | 144 |
|
145 | 145 | error: unreachable pattern
|
146 |
| - --> $DIR/reachability.rs:104:9 |
| 146 | + --> $DIR/reachability.rs:105:9 |
147 | 147 | |
|
148 | 148 | LL | BAR => {}
|
149 | 149 | | ^^^
|
|
0 commit comments