@@ -160,12 +160,10 @@ LL | let (l, r) = "a.b.c".split_once('.').unwrap();
160160help: remove the `iter` usages
161161 |
162162LL - let l = iter.next().unwrap();
163- LL +
164163 |
165164help: remove the `iter` usages
166165 |
167166LL - let r = iter.next().unwrap();
168- LL +
169167 |
170168
171169error: manual implementation of `split_once`
@@ -185,12 +183,10 @@ LL | let (l, r) = "a.b.c".split_once('.')?;
185183help: remove the `iter` usages
186184 |
187185LL - let l = iter.next()?;
188- LL +
189186 |
190187help: remove the `iter` usages
191188 |
192189LL - let r = iter.next()?;
193- LL +
194190 |
195191
196192error: manual implementation of `rsplit_once`
@@ -210,12 +206,10 @@ LL | let (l, r) = "a.b.c".rsplit_once('.').unwrap();
210206help: remove the `iter` usages
211207 |
212208LL - let r = iter.next().unwrap();
213- LL +
214209 |
215210help: remove the `iter` usages
216211 |
217212LL - let l = iter.next().unwrap();
218- LL +
219213 |
220214
221215error: manual implementation of `rsplit_once`
@@ -235,12 +229,10 @@ LL | let (l, r) = "a.b.c".rsplit_once('.')?;
235229help: remove the `iter` usages
236230 |
237231LL - let r = iter.next()?;
238- LL +
239232 |
240233help: remove the `iter` usages
241234 |
242235LL - let l = iter.next()?;
243- LL +
244236 |
245237
246238error: manual implementation of `split_once`
@@ -271,12 +263,10 @@ LL | let (a, b) = "a.b.c".split_once('.').unwrap();
271263help: remove the `iter` usages
272264 |
273265LL - let a = iter.next().unwrap();
274- LL +
275266 |
276267help: remove the `iter` usages
277268 |
278269LL - let b = iter.next().unwrap();
279- LL +
280270 |
281271
282272error: aborting due to 19 previous errors
0 commit comments