@@ -13,7 +13,7 @@ LL +         val if val == x.y => (),
1313help: consider extracting the expression into a `const`
1414   |
1515LL +     const VAL: /* Type */ = x.y;
16- LL ~      match 0 {
16+ LL |      match 0 {
1717LL |         x => (),
1818LL ~         VAL => (),
1919   |
@@ -33,7 +33,7 @@ LL +         val if val == x.0 => (),
3333help: consider extracting the expression into a `const`
3434   |
3535LL +     const VAL: /* Type */ = x.0;
36- LL ~      match 0 {
36+ LL |      match 0 {
3737LL |         x => (),
3838LL |         x.y => (),
3939LL ~         VAL => (),
@@ -54,7 +54,7 @@ LL +         val if val == x._0 => (),
5454help: consider extracting the expression into a `const`
5555   |
5656LL +     const VAL: /* Type */ = x._0;
57- LL ~      match 0 {
57+ LL |      match 0 {
5858LL |         x => (),
5959LL |         x.y => (),
6060LL |         x.0 => (),
@@ -76,7 +76,7 @@ LL +         val if val == x.0.1 => (),
7676help: consider extracting the expression into a `const`
7777   |
7878LL +     const VAL: /* Type */ = x.0.1;
79- LL ~      match 0 {
79+ LL |      match 0 {
8080LL |         x => (),
8181...
8282LL |         x._0 => (),
@@ -98,7 +98,7 @@ LL +         val if val == x.4.y.17.__z => (),
9898help: consider extracting the expression into a `const`
9999   |
100100LL +     const VAL: /* Type */ = x.4.y.17.__z;
101- LL ~      match 0 {
101+ LL |      match 0 {
102102LL |         x => (),
103103...
104104LL |         x.0.1 => (),
@@ -150,7 +150,7 @@ LL +         val if val == x[0] => (),
150150help: consider extracting the expression into a `const`
151151   |
152152LL +     const VAL: /* Type */ = x[0];
153- LL ~      match 0 {
153+ LL |      match 0 {
154154LL ~         VAL => (),
155155   |
156156
@@ -169,7 +169,7 @@ LL +         val if val == x[..] => (),
169169help: consider extracting the expression into a `const`
170170   |
171171LL +     const VAL: /* Type */ = x[..];
172- LL ~      match 0 {
172+ LL |      match 0 {
173173LL |         x[0] => (),
174174LL ~         VAL => (),
175175   |
@@ -216,7 +216,7 @@ LL +         val if val == x.f() => (),
216216help: consider extracting the expression into a `const`
217217   |
218218LL +     const VAL: /* Type */ = x.f();
219- LL ~      match 0 {
219+ LL |      match 0 {
220220LL ~         VAL => (),
221221   |
222222
@@ -235,7 +235,7 @@ LL +         val if val == x._f() => (),
235235help: consider extracting the expression into a `const`
236236   |
237237LL +     const VAL: /* Type */ = x._f();
238- LL ~      match 0 {
238+ LL |      match 0 {
239239LL |         x.f() => (),
240240LL ~         VAL => (),
241241   |
@@ -255,7 +255,7 @@ LL +         val if val == x? => (),
255255help: consider extracting the expression into a `const`
256256   |
257257LL +     const VAL: /* Type */ = x?;
258- LL ~      match 0 {
258+ LL |      match 0 {
259259LL |         x.f() => (),
260260LL |         x._f() => (),
261261LL ~         VAL => (),
@@ -276,7 +276,7 @@ LL +         val if val == ().f() => (),
276276help: consider extracting the expression into a `const`
277277   |
278278LL +     const VAL: /* Type */ = ().f();
279- LL ~      match 0 {
279+ LL |      match 0 {
280280LL |         x.f() => (),
281281LL |         x._f() => (),
282282LL |         x? => (),
@@ -298,7 +298,7 @@ LL +         val if val == (0, x)?.f() => (),
298298help: consider extracting the expression into a `const`
299299   |
300300LL +     const VAL: /* Type */ = (0, x)?.f();
301- LL ~      match 0 {
301+ LL |      match 0 {
302302LL |         x.f() => (),
303303...
304304LL |         ().f() => (),
@@ -320,7 +320,7 @@ LL +         val if val == x.f().g() => (),
320320help: consider extracting the expression into a `const`
321321   |
322322LL +     const VAL: /* Type */ = x.f().g();
323- LL ~      match 0 {
323+ LL |      match 0 {
324324LL |         x.f() => (),
325325...
326326LL |         (0, x)?.f() => (),
@@ -342,7 +342,7 @@ LL +         val if val == 0.f()?.g()?? => (),
342342help: consider extracting the expression into a `const`
343343   |
344344LL +     const VAL: /* Type */ = 0.f()?.g()??;
345- LL ~      match 0 {
345+ LL |      match 0 {
346346LL |         x.f() => (),
347347...
348348LL |         x.f().g() => (),
@@ -364,7 +364,7 @@ LL +         val if val == x as usize => (),
364364help: consider extracting the expression into a `const`
365365   |
366366LL +     const VAL: /* Type */ = x as usize;
367- LL ~      match 0 {
367+ LL |      match 0 {
368368LL ~         VAL => (),
369369   |
370370
@@ -383,7 +383,7 @@ LL +         val if val == 0 as usize => (),
383383help: consider extracting the expression into a `const`
384384   |
385385LL +     const VAL: /* Type */ = 0 as usize;
386- LL ~      match 0 {
386+ LL |      match 0 {
387387LL |         x as usize => (),
388388LL ~         VAL => (),
389389   |
@@ -403,7 +403,7 @@ LL +         val if val == x.f().0.4 as f32 => (),
403403help: consider extracting the expression into a `const`
404404   |
405405LL +     const VAL: /* Type */ = x.f().0.4 as f32;
406- LL ~      match 0 {
406+ LL |      match 0 {
407407LL |         x as usize => (),
408408LL |         0 as usize => (),
409409LL ~         VAL => (),
@@ -424,7 +424,7 @@ LL +         val if val == 1 + 1 => (),
424424help: consider extracting the expression into a `const`
425425   |
426426LL +     const VAL: /* Type */ = 1 + 1;
427- LL ~      match 0 {
427+ LL |      match 0 {
428428LL ~         VAL => (),
429429   |
430430
@@ -443,7 +443,7 @@ LL +         val if val == (1 + 2) * 3 => (),
443443help: consider extracting the expression into a `const`
444444   |
445445LL +     const VAL: /* Type */ = (1 + 2) * 3;
446- LL ~      match 0 {
446+ LL |      match 0 {
447447LL |         1 + 1 => (),
448448LL ~         VAL => (),
449449   |
@@ -463,7 +463,7 @@ LL +         val if val == (x.0 > 2) => (),
463463help: consider extracting the expression into a `const`
464464   |
465465LL +     const VAL: /* Type */ = x.0 > 2;
466- LL ~      match 0 {
466+ LL |      match 0 {
467467LL |         1 + 1 => (),
468468...
469469LL |
@@ -485,7 +485,7 @@ LL +         val if val == (x.0 == 2) => (),
485485help: consider extracting the expression into a `const`
486486   |
487487LL +     const VAL: /* Type */ = x.0 == 2;
488- LL ~      match 0 {
488+ LL |      match 0 {
489489LL |         1 + 1 => (),
490490...
491491LL |         x.0 > 2 => (),
@@ -507,7 +507,7 @@ LL +         (x, val) if x != 0 && val == (y.0 > 2) => (),
507507help: consider extracting the expression into a `const`
508508   |
509509LL +     const VAL: /* Type */ = y.0 > 2;
510- LL ~      match (0, 0) {
510+ LL |      match (0, 0) {
511511LL ~         (x, VAL) if x != 0 => (),
512512   |
513513
@@ -526,7 +526,7 @@ LL +         (x, val) if (x != 0 || x != 1) && val == (y.0 > 2) => (),
526526help: consider extracting the expression into a `const`
527527   |
528528LL +     const VAL: /* Type */ = y.0 > 2;
529- LL ~      match (0, 0) {
529+ LL |      match (0, 0) {
530530LL |         (x, y.0 > 2) if x != 0 => (),
531531LL ~         (x, VAL) if x != 0 || x != 1 => (),
532532   |
@@ -563,7 +563,7 @@ LL +         val if val == u8::MAX.abs() => (),
563563help: consider extracting the expression into a `const`
564564   |
565565LL +     const VAL: /* Type */ = u8::MAX.abs();
566- LL ~      match u8::MAX {
566+ LL |      match u8::MAX {
567567LL ~         VAL => (),
568568   |
569569
@@ -582,7 +582,7 @@ LL +         z @ w @ val if val == v.u() => (),
582582help: consider extracting the expression into a `const`
583583   |
584584LL +     const VAL: /* Type */ = v.u();
585- LL ~      match u8::MAX {
585+ LL |      match u8::MAX {
586586LL |         u8::MAX.abs() => (),
587587...
588588LL |
@@ -604,7 +604,7 @@ LL +         val if val == y.ilog(3) => (),
604604help: consider extracting the expression into a `const`
605605   |
606606LL +     const VAL: /* Type */ = y.ilog(3);
607- LL ~      match u8::MAX {
607+ LL |      match u8::MAX {
608608LL |         u8::MAX.abs() => (),
609609...
610610LL |
@@ -626,7 +626,7 @@ LL +         val if val == n + 1 => (),
626626help: consider extracting the expression into a `const`
627627   |
628628LL +     const VAL: /* Type */ = n + 1;
629- LL ~      match u8::MAX {
629+ LL |      match u8::MAX {
630630LL |         u8::MAX.abs() => (),
631631...
632632LL |
@@ -648,7 +648,7 @@ LL +         (val) if val == "".f() + 14 * 8 => (),
648648help: consider extracting the expression into a `const`
649649   |
650650LL +     const VAL: /* Type */ = "".f() + 14 * 8;
651- LL ~      match u8::MAX {
651+ LL |      match u8::MAX {
652652LL |         u8::MAX.abs() => (),
653653...
654654LL |
@@ -670,7 +670,7 @@ LL +         val if val == f?() => (),
670670help: consider extracting the expression into a `const`
671671   |
672672LL +     const VAL: /* Type */ = f?();
673- LL ~      match u8::MAX {
673+ LL |      match u8::MAX {
674674LL |         u8::MAX.abs() => (),
675675...
676676LL |         0 | ((1) | 2) | 3 => (),
0 commit comments