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 @@ -384,6 +384,7 @@ pub fn eq_item_kind(l: &ItemKind, r: &ItemKind) -> bool {
384
384
contract : lc,
385
385
body : lb,
386
386
define_opaque : _,
387
+ eii_impl : _,
387
388
} ) ,
388
389
Fn ( box ast:: Fn {
389
390
defaultness : rd,
@@ -393,6 +394,7 @@ pub fn eq_item_kind(l: &ItemKind, r: &ItemKind) -> bool {
393
394
contract : rc,
394
395
body : rb,
395
396
define_opaque : _,
397
+ eii_impl : _,
396
398
} ) ,
397
399
) => {
398
400
eq_defaultness ( * ld, * rd)
@@ -547,6 +549,7 @@ pub fn eq_foreign_item_kind(l: &ForeignItemKind, r: &ForeignItemKind) -> bool {
547
549
contract : lc,
548
550
body : lb,
549
551
define_opaque : _,
552
+ eii_impl : _,
550
553
} ) ,
551
554
Fn ( box ast:: Fn {
552
555
defaultness : rd,
@@ -556,6 +559,7 @@ pub fn eq_foreign_item_kind(l: &ForeignItemKind, r: &ForeignItemKind) -> bool {
556
559
contract : rc,
557
560
body : rb,
558
561
define_opaque : _,
562
+ eii_impl : _,
559
563
} ) ,
560
564
) => {
561
565
eq_defaultness ( * ld, * rd)
@@ -630,6 +634,7 @@ pub fn eq_assoc_item_kind(l: &AssocItemKind, r: &AssocItemKind) -> bool {
630
634
contract : lc,
631
635
body : lb,
632
636
define_opaque : _,
637
+ eii_impl : _,
633
638
} ) ,
634
639
Fn ( box ast:: Fn {
635
640
defaultness : rd,
@@ -639,6 +644,7 @@ pub fn eq_assoc_item_kind(l: &AssocItemKind, r: &AssocItemKind) -> bool {
639
644
contract : rc,
640
645
body : rb,
641
646
define_opaque : _,
647
+ eii_impl : _,
642
648
} ) ,
643
649
) => {
644
650
eq_defaultness ( * ld, * rd)
You can’t perform that action at this time.
0 commit comments