summaryrefslogtreecommitdiffstats
path: root/src/test/ui/rust-2018/issue-54400-unused-extern-crate-attr-span.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/rust-2018/issue-54400-unused-extern-crate-attr-span.rs')
-rw-r--r--src/test/ui/rust-2018/issue-54400-unused-extern-crate-attr-span.rs15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/test/ui/rust-2018/issue-54400-unused-extern-crate-attr-span.rs b/src/test/ui/rust-2018/issue-54400-unused-extern-crate-attr-span.rs
deleted file mode 100644
index a948baee5..000000000
--- a/src/test/ui/rust-2018/issue-54400-unused-extern-crate-attr-span.rs
+++ /dev/null
@@ -1,15 +0,0 @@
-// aux-build:edition-lint-paths.rs
-// run-rustfix
-// compile-flags:--extern edition_lint_paths --cfg blandiloquence
-// edition:2018
-
-#![deny(rust_2018_idioms)]
-#![allow(dead_code)]
-
-// The suggestion span should include the attribute.
-
-#[cfg(blandiloquence)] //~ HELP remove it
-extern crate edition_lint_paths;
-//~^ ERROR unused extern crate
-
-fn main() {}