@@ -58,7 +58,7 @@ LL | x._0 => (),
5858help: check the value in an arm guard
5959 |
6060LL | val if val == x._0 => (),
61- | ~~~ ++++++++++++++
61+ | ~~~ ++++++++++++++
6262help: extract the expression into a `const` and refer to it
6363 |
6464LL + const VAL: _ = x._0;
@@ -82,7 +82,7 @@ LL | x.0.1 => (),
8282help: check the value in an arm guard
8383 |
8484LL | val if val == x.0.1 => (),
85- | ~~~ +++++++++++++++
85+ | ~~~ +++++++++++++++
8686help: extract the expression into a `const` and refer to it
8787 |
8888LL + const VAL: _ = x.0.1;
@@ -106,7 +106,7 @@ LL | x.4.y.17.__z => (),
106106help: check the value in an arm guard
107107 |
108108LL | val if val == x.4.y.17.__z => (),
109- | ~~~ ++++++++++++++++++++++
109+ | ~~~ ++++++++++++++++++++++
110110help: extract the expression into a `const` and refer to it
111111 |
112112LL + const VAL: _ = x.4.y.17.__z;
@@ -130,7 +130,7 @@ LL | x.f() => (),
130130help: check the value in an arm guard
131131 |
132132LL | val if val == x.f() => (),
133- | ~~~ +++++++++++++++
133+ | ~~~ +++++++++++++++
134134help: extract the expression into a `const` and refer to it
135135 |
136136LL + const VAL: _ = x.f();
@@ -151,7 +151,7 @@ LL | x._f() => (),
151151help: check the value in an arm guard
152152 |
153153LL | val if val == x._f() => (),
154- | ~~~ ++++++++++++++++
154+ | ~~~ ++++++++++++++++
155155help: extract the expression into a `const` and refer to it
156156 |
157157LL + const VAL: _ = x._f();
@@ -173,7 +173,7 @@ LL | x? => (),
173173help: check the value in an arm guard
174174 |
175175LL | val if val == x? => (),
176- | ~~~++++++++++++
176+ | ~~~ ++++++++++++
177177help: extract the expression into a `const` and refer to it
178178 |
179179LL + const VAL: _ = x?;
@@ -196,7 +196,7 @@ LL | ().f() => (),
196196help: check the value in an arm guard
197197 |
198198LL | val if val == ().f() => (),
199- | ~~~ ++++++++++++++++
199+ | ~~~ ++++++++++++++++
200200help: extract the expression into a `const` and refer to it
201201 |
202202LL + const VAL: _ = ().f();
@@ -220,7 +220,7 @@ LL | (0, x)?.f() => (),
220220help: check the value in an arm guard
221221 |
222222LL | val if val == (0, x)?.f() => (),
223- | ~~~ +++++++++++++++++++++
223+ | ~~~ +++++++++++++++++++++
224224help: extract the expression into a `const` and refer to it
225225 |
226226LL + const VAL: _ = (0, x)?.f();
@@ -244,7 +244,7 @@ LL | x.f().g() => (),
244244help: check the value in an arm guard
245245 |
246246LL | val if val == x.f().g() => (),
247- | ~~~ +++++++++++++++++++
247+ | ~~~ +++++++++++++++++++
248248help: extract the expression into a `const` and refer to it
249249 |
250250LL + const VAL: _ = x.f().g();
@@ -268,7 +268,7 @@ LL | 0.f()?.g()?? => (),
268268help: check the value in an arm guard
269269 |
270270LL | val if val == 0.f()?.g()?? => (),
271- | ~~~ ++++++++++++++++++++++
271+ | ~~~ ++++++++++++++++++++++
272272help: extract the expression into a `const` and refer to it
273273 |
274274LL + const VAL: _ = 0.f()?.g()??;
@@ -292,7 +292,7 @@ LL | x as usize => (),
292292help: check the value in an arm guard
293293 |
294294LL | val if val == x as usize => (),
295- | ~~~ ++++++++++++++++++++
295+ | ~~~ ++++++++++++++++++++
296296help: extract the expression into a `const` and refer to it
297297 |
298298LL + const VAL: _ = x as usize;
@@ -313,7 +313,7 @@ LL | 0 as usize => (),
313313help: check the value in an arm guard
314314 |
315315LL | val if val == 0 as usize => (),
316- | ~~~ ++++++++++++++++++++
316+ | ~~~ ++++++++++++++++++++
317317help: extract the expression into a `const` and refer to it
318318 |
319319LL + const VAL: _ = 0 as usize;
@@ -335,7 +335,7 @@ LL | x.f().0.4 as f32 => (),
335335help: check the value in an arm guard
336336 |
337337LL | val if val == x.f().0.4 as f32 => (),
338- | ~~~ ++++++++++++++++++++++++++
338+ | ~~~ ++++++++++++++++++++++++++
339339help: extract the expression into a `const` and refer to it
340340 |
341341LL + const VAL: _ = x.f().0.4 as f32;
@@ -358,7 +358,7 @@ LL | 1 + 1 => (),
358358help: check the value in an arm guard
359359 |
360360LL | val if val == 1 + 1 => (),
361- | ~~~ +++++++++++++++
361+ | ~~~ +++++++++++++++
362362help: extract the expression into a `const` and refer to it
363363 |
364364LL + const VAL: _ = 1 + 1;
@@ -379,7 +379,7 @@ LL | (1 + 2) * 3 => (),
379379help: check the value in an arm guard
380380 |
381381LL | val if val == (1 + 2) * 3 => (),
382- | ~~~ +++++++++++++++++++++
382+ | ~~~ +++++++++++++++++++++
383383help: extract the expression into a `const` and refer to it
384384 |
385385LL + const VAL: _ = (1 + 2) * 3;
@@ -418,7 +418,7 @@ LL | u8::MAX.abs() => (),
418418help: check the value in an arm guard
419419 |
420420LL | val if val == u8::MAX.abs() => (),
421- | ~~~ +++++++++++++++++++++++
421+ | ~~~ +++++++++++++++++++++++
422422help: extract the expression into a `const` and refer to it
423423 |
424424LL + const VAL: _ = u8::MAX.abs();
@@ -439,7 +439,7 @@ LL | z @ w @ v.u() => (),
439439help: check the value in an arm guard
440440 |
441441LL | z @ w @ val if val == v.u() => (),
442- | ~~~ +++++++++++++++
442+ | ~~~ +++++++++++++++
443443help: extract the expression into a `const` and refer to it
444444 |
445445LL + const VAL: _ = v.u();
@@ -463,7 +463,7 @@ LL | y.ilog(3) => (),
463463help: check the value in an arm guard
464464 |
465465LL | val if val == y.ilog(3) => (),
466- | ~~~ +++++++++++++++++++
466+ | ~~~ +++++++++++++++++++
467467help: extract the expression into a `const` and refer to it
468468 |
469469LL + const VAL: _ = y.ilog(3);
@@ -487,7 +487,7 @@ LL | n + 1 => (),
487487help: check the value in an arm guard
488488 |
489489LL | val if val == n + 1 => (),
490- | ~~~ +++++++++++++++
490+ | ~~~ +++++++++++++++
491491help: extract the expression into a `const` and refer to it
492492 |
493493LL + const VAL: _ = n + 1;
@@ -535,7 +535,7 @@ LL | f?() => (),
535535help: check the value in an arm guard
536536 |
537537LL | val if val == f?() => (),
538- | ~~~ ++++++++++++++
538+ | ~~~ ++++++++++++++
539539help: extract the expression into a `const` and refer to it
540540 |
541541LL + const VAL: _ = f?();
0 commit comments