remove #[primary_span]

This commit is contained in:
PragmaTwice 2022-08-17 22:08:06 +08:00
parent b704843c44
commit 9efe979511
2 changed files with 4 additions and 4 deletions

View File

@ -328,7 +328,6 @@ pub struct SubstsOnOverriddenImpl {
#[derive(LintDiagnostic)]
#[lint(typeck::unused_extern_crate)]
pub struct UnusedExternCrate {
#[primary_span]
#[suggestion(applicability = "machine-applicable", code = "")]
pub span: Span,
}
@ -336,7 +335,6 @@ pub struct UnusedExternCrate {
#[derive(LintDiagnostic)]
#[lint(typeck::extern_crate_not_idiomatic)]
pub struct ExternCrateNotIdiomatic {
#[primary_span]
#[suggestion_short(applicability = "machine-applicable", code = "{suggestion_code}")]
pub span: Span,
pub msg_code: String,

View File

@ -1,9 +1,11 @@
error: unused extern crate
--> $DIR/issue-54400-unused-extern-crate-attr-span.rs:11:1
--> $DIR/issue-54400-unused-extern-crate-attr-span.rs:12:1
|
LL | / #[cfg(blandiloquence)]
LL | | extern crate edition_lint_paths;
| |________________________________^ help: remove it
| | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
| |________________________________|
| help: remove it
|
note: the lint level is defined here
--> $DIR/issue-54400-unused-extern-crate-attr-span.rs:6:9