@@ -152,71 +152,71 @@ LL | let _ = '0'..'9';
152152 = note: this error originates in the macro `__inline_mac_fn_main` (in Nightly builds, run with -Z macro-backtrace for more info)
153153
154154error: almost complete ascii range
155- --> tests/ui/almost_complete_range.rs:91 :9
155+ --> tests/ui/almost_complete_range.rs:96 :9
156156 |
157157LL | 'a'..'z' => 1,
158158 | ^^^--^^^
159159 | |
160160 | help: use an inclusive range: `...`
161161
162162error: almost complete ascii range
163- --> tests/ui/almost_complete_range.rs:93 :9
163+ --> tests/ui/almost_complete_range.rs:98 :9
164164 |
165165LL | 'A'..'Z' => 2,
166166 | ^^^--^^^
167167 | |
168168 | help: use an inclusive range: `...`
169169
170170error: almost complete ascii range
171- --> tests/ui/almost_complete_range.rs:95 :9
171+ --> tests/ui/almost_complete_range.rs:100 :9
172172 |
173173LL | '0'..'9' => 3,
174174 | ^^^--^^^
175175 | |
176176 | help: use an inclusive range: `...`
177177
178178error: almost complete ascii range
179- --> tests/ui/almost_complete_range.rs:103 :13
179+ --> tests/ui/almost_complete_range.rs:108 :13
180180 |
181181LL | let _ = 'a'..'z';
182182 | ^^^--^^^
183183 | |
184184 | help: use an inclusive range: `..=`
185185
186186error: almost complete ascii range
187- --> tests/ui/almost_complete_range.rs:105 :13
187+ --> tests/ui/almost_complete_range.rs:110 :13
188188 |
189189LL | let _ = 'A'..'Z';
190190 | ^^^--^^^
191191 | |
192192 | help: use an inclusive range: `..=`
193193
194194error: almost complete ascii range
195- --> tests/ui/almost_complete_range.rs:107 :13
195+ --> tests/ui/almost_complete_range.rs:112 :13
196196 |
197197LL | let _ = '0'..'9';
198198 | ^^^--^^^
199199 | |
200200 | help: use an inclusive range: `..=`
201201
202202error: almost complete ascii range
203- --> tests/ui/almost_complete_range.rs:110 :9
203+ --> tests/ui/almost_complete_range.rs:115 :9
204204 |
205205LL | 'a'..'z' => 1,
206206 | ^^^--^^^
207207 | |
208208 | help: use an inclusive range: `..=`
209209
210210error: almost complete ascii range
211- --> tests/ui/almost_complete_range.rs:112 :9
211+ --> tests/ui/almost_complete_range.rs:117 :9
212212 |
213213LL | 'A'..'Z' => 1,
214214 | ^^^--^^^
215215 | |
216216 | help: use an inclusive range: `..=`
217217
218218error: almost complete ascii range
219- --> tests/ui/almost_complete_range.rs:114 :9
219+ --> tests/ui/almost_complete_range.rs:119 :9
220220 |
221221LL | '0'..'9' => 3,
222222 | ^^^--^^^
0 commit comments