1
Fork 0

rustc_lint: Remove unused_crate_dependencies from the unused group

This commit is contained in:
Vadim Petrochenkov 2020-05-28 19:44:53 +03:00
parent 4512721156
commit 1eef0c3c1e
2 changed files with 9 additions and 1 deletions

View file

@ -276,7 +276,6 @@ fn register_builtins(store: &mut LintStore, no_interleave_lints: bool) {
UNUSED_ALLOCATION,
UNUSED_DOC_COMMENTS,
UNUSED_EXTERN_CRATES,
UNUSED_CRATE_DEPENDENCIES,
UNUSED_FEATURES,
UNUSED_LABELS,
UNUSED_PARENS,

View file

@ -0,0 +1,9 @@
// `unused_crate_dependencies` is not currently in the `unused` group
// due to false positives from Cargo.
// check-pass
// aux-crate:bar=bar.rs
#![deny(unused)]
fn main() {}