mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
extend unused_extern_crates
lint with a suggestion to remove
This commit is contained in:
parent
577a5b2703
commit
d5010ecf44
@ -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
src/test/ui/rust-2018/extern-crate-idiomatic-in-2018.fixed
Normal file
36
src/test/ui/rust-2018/extern-crate-idiomatic-in-2018.fixed
Normal file
@ -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
src/test/ui/rust-2018/extern-crate-idiomatic-in-2018.rs
Normal file
36
src/test/ui/rust-2018/extern-crate-idiomatic-in-2018.rs
Normal file
@ -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
src/test/ui/rust-2018/extern-crate-idiomatic-in-2018.stderr
Normal file
14
src/test/ui/rust-2018/extern-crate-idiomatic-in-2018.stderr
Normal file
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user