From 698f8c2f01ea549d77d7dc3338a12e04c11057b9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:02:58 +0200 Subject: Adding upstream version 1.64.0+dfsg1. Signed-off-by: Daniel Baumann --- .../extern-crate-referenced-by-self-path.fixed | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/test/ui/rust-2018/extern-crate-referenced-by-self-path.fixed (limited to 'src/test/ui/rust-2018/extern-crate-referenced-by-self-path.fixed') diff --git a/src/test/ui/rust-2018/extern-crate-referenced-by-self-path.fixed b/src/test/ui/rust-2018/extern-crate-referenced-by-self-path.fixed new file mode 100644 index 000000000..11b9a67ed --- /dev/null +++ b/src/test/ui/rust-2018/extern-crate-referenced-by-self-path.fixed @@ -0,0 +1,17 @@ +// run-pass +// aux-build:edition-lint-paths.rs +// run-rustfix + +// Oddball: `edition_lint_paths` is accessed via this `self` path +// rather than being accessed directly. Unless we rewrite that path, +// we can't drop the extern crate. + +#![feature(rust_2018_preview)] +#![deny(absolute_paths_not_starting_with_crate)] + +extern crate edition_lint_paths; +use self::edition_lint_paths::foo; + +fn main() { + foo(); +} -- cgit v1.2.3