We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 207308f commit af03e67Copy full SHA for af03e67
compiler/rustc_resolve/src/check_unused.rs
@@ -402,7 +402,7 @@ impl Resolver<'_, '_> {
402
!tcx.is_compiler_builtins(cnum)
403
&& !tcx.is_panic_runtime(cnum)
404
&& !tcx.has_global_allocator(cnum)
405
- // TODO: test for EII in the crate
+ && tcx.externally_implementable_items(cnum).is_empty()
406
}) {
407
maybe_unused_extern_crates.insert(id, import.span);
408
}
0 commit comments