Skip to content

Commit 2894281

Browse files
authored
Rollup merge of #94563 - TaKO8Ki:remove-unnecessary-patten-for-ignoring-remaining-parts, r=Dylan-DPC
Remove a unnecessary `..` pattern
2 parents bb8a82e + ff19c05 commit 2894281

File tree

1 file changed

+1
-1
lines changed
  • compiler/rustc_resolve/src

1 file changed

+1
-1
lines changed

compiler/rustc_resolve/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3207,7 +3207,7 @@ impl<'a> Resolver<'a> {
32073207
}
32083208
}
32093209
}
3210-
ImportKind::ExternCrate { source, target, .. } => {
3210+
ImportKind::ExternCrate { source, target } => {
32113211
suggestion = Some(format!(
32123212
"extern crate {} as {};",
32133213
source.unwrap_or(target.name),

0 commit comments

Comments
 (0)