summaryrefslogtreecommitdiffstats
path: root/src/test/ui/rust-2018/extern-crate-idiomatic.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/rust-2018/extern-crate-idiomatic.rs')
-rw-r--r--src/test/ui/rust-2018/extern-crate-idiomatic.rs18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/test/ui/rust-2018/extern-crate-idiomatic.rs b/src/test/ui/rust-2018/extern-crate-idiomatic.rs
deleted file mode 100644
index 3111b1dab..000000000
--- a/src/test/ui/rust-2018/extern-crate-idiomatic.rs
+++ /dev/null
@@ -1,18 +0,0 @@
-// run-pass
-// aux-build:edition-lint-paths.rs
-// compile-flags:--extern edition_lint_paths
-// run-rustfix
-
-// The "normal case". Ideally we would remove the `extern crate` here,
-// but we don't.
-
-#![feature(rust_2018_preview)]
-#![deny(absolute_paths_not_starting_with_crate)]
-
-extern crate edition_lint_paths;
-
-use edition_lint_paths::foo;
-
-fn main() {
- foo();
-}