Skip to content

Commit

Permalink
extend unused_extern_crates lint with a suggestion to remove
Browse files Browse the repository at this point in the history
  • Loading branch information
nikomatsakis committed Jun 1, 2018
1 parent 577a5b2 commit d5010ec
Show file tree
Hide file tree
Showing 4 changed files with 89 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/librustc_typeck/check_unused.rs
Expand Up @@ -109,6 +109,8 @@ pub fn check_crate<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>) {
let id = tcx.hir.hir_to_node_id(hir_id);
let lint = lint::builtin::UNUSED_EXTERN_CRATES;
let msg = "unused extern crate";
tcx.lint_node(lint, id, span, msg);
tcx.struct_span_lint_node(lint, id, span, msg)
.span_suggestion_short(span, "remove it", "".to_string())
.emit();
}
}
36 changes: 36 additions & 0 deletions src/test/ui/rust-2018/extern-crate-idiomatic-in-2018.fixed
@@ -0,0 +1,36 @@
// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// aux-build:edition-lint-paths.rs
// run-rustfix
// compile-flags:--edition 2018

// The "normal case". Ideally we would remove the `extern crate` here,
// but we don't.

#![feature(rust_2018_preview)]
#![deny(absolute_path_not_starting_with_crate)]
#![deny(unused_extern_crates)]
#![allow(dead_code)]


//~^ ERROR unused extern crate

extern crate edition_lint_paths as bar;

fn main() {
// This is not considered to *use* the `extern crate` in Rust 2018:
use edition_lint_paths::foo;
foo();

// But this should be a use of the (renamed) crate:
crate::bar::foo();
}

36 changes: 36 additions & 0 deletions src/test/ui/rust-2018/extern-crate-idiomatic-in-2018.rs
@@ -0,0 +1,36 @@
// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// aux-build:edition-lint-paths.rs
// run-rustfix
// compile-flags:--edition 2018

// The "normal case". Ideally we would remove the `extern crate` here,
// but we don't.

#![feature(rust_2018_preview)]
#![deny(absolute_path_not_starting_with_crate)]
#![deny(unused_extern_crates)]
#![allow(dead_code)]

extern crate edition_lint_paths;
//~^ ERROR unused extern crate

extern crate edition_lint_paths as bar;

fn main() {
// This is not considered to *use* the `extern crate` in Rust 2018:
use edition_lint_paths::foo;
foo();

// But this should be a use of the (renamed) crate:
crate::bar::foo();
}

14 changes: 14 additions & 0 deletions src/test/ui/rust-2018/extern-crate-idiomatic-in-2018.stderr
@@ -0,0 +1,14 @@
error: unused extern crate
--> $DIR/extern-crate-idiomatic-in-2018.rs:23:1
|
LL | extern crate edition_lint_paths;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove it
|
note: lint level defined here
--> $DIR/extern-crate-idiomatic-in-2018.rs:20:9
|
LL | #![deny(unused_extern_crates)]
| ^^^^^^^^^^^^^^^^^^^^

error: aborting due to previous error

0 comments on commit d5010ec

Please sign in to comment.