File tree 1 file changed +6
-0
lines changed
src/tools/clippy/clippy_utils/src/ast_utils
1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -382,6 +382,7 @@ pub fn eq_item_kind(l: &ItemKind, r: &ItemKind) -> bool {
382
382
contract : lc,
383
383
body : lb,
384
384
define_opaque : _,
385
+ eii_impl : _,
385
386
} ) ,
386
387
Fn ( box ast:: Fn {
387
388
defaultness : rd,
@@ -391,6 +392,7 @@ pub fn eq_item_kind(l: &ItemKind, r: &ItemKind) -> bool {
391
392
contract : rc,
392
393
body : rb,
393
394
define_opaque : _,
395
+ eii_impl : _,
394
396
} ) ,
395
397
) => {
396
398
eq_defaultness ( * ld, * rd)
@@ -539,6 +541,7 @@ pub fn eq_foreign_item_kind(l: &ForeignItemKind, r: &ForeignItemKind) -> bool {
539
541
contract : lc,
540
542
body : lb,
541
543
define_opaque : _,
544
+ eii_impl : _,
542
545
} ) ,
543
546
Fn ( box ast:: Fn {
544
547
defaultness : rd,
@@ -548,6 +551,7 @@ pub fn eq_foreign_item_kind(l: &ForeignItemKind, r: &ForeignItemKind) -> bool {
548
551
contract : rc,
549
552
body : rb,
550
553
define_opaque : _,
554
+ eii_impl : _,
551
555
} ) ,
552
556
) => {
553
557
eq_defaultness ( * ld, * rd)
@@ -622,6 +626,7 @@ pub fn eq_assoc_item_kind(l: &AssocItemKind, r: &AssocItemKind) -> bool {
622
626
contract : lc,
623
627
body : lb,
624
628
define_opaque : _,
629
+ eii_impl : _,
625
630
} ) ,
626
631
Fn ( box ast:: Fn {
627
632
defaultness : rd,
@@ -631,6 +636,7 @@ pub fn eq_assoc_item_kind(l: &AssocItemKind, r: &AssocItemKind) -> bool {
631
636
contract : rc,
632
637
body : rb,
633
638
define_opaque : _,
639
+ eii_impl : _,
634
640
} ) ,
635
641
) => {
636
642
eq_defaultness ( * ld, * rd)
You can’t perform that action at this time.
0 commit comments