Skip to content

Commit f6661f5

Browse files
StaticForeignItem and StaticItem are the same
1 parent c693f31 commit f6661f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clippy_utils/src/ast_utils.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -449,13 +449,13 @@ pub fn eq_foreign_item_kind(l: &ForeignItemKind, r: &ForeignItemKind) -> bool {
449449
use ForeignItemKind::*;
450450
match (l, r) {
451451
(
452-
Static(box StaticForeignItem {
452+
Static(box StaticItem {
453453
ty: lt,
454454
mutability: lm,
455455
expr: le,
456456
safety: ls,
457457
}),
458-
Static(box StaticForeignItem {
458+
Static(box StaticItem {
459459
ty: rt,
460460
mutability: rm,
461461
expr: re,

0 commit comments

Comments
 (0)