]> git.proxmox.com Git - rustc.git/blob - tests/ui/rust-2018/extern-crate-rename.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / rust-2018 / extern-crate-rename.rs
1 // aux-build:edition-lint-paths.rs
2 // run-rustfix
3
4 // Oddball: crate is renamed, making it harder for us to rewrite
5 // paths. We don't (and we leave the `extern crate` in place).
6
7 #![feature(rust_2018_preview)]
8 #![deny(absolute_paths_not_starting_with_crate)]
9
10 extern crate edition_lint_paths as my_crate;
11
12 use my_crate::foo;
13 //~^ ERROR absolute paths must start
14 //~| WARNING this is accepted in the current edition
15
16 fn main() {
17 foo();
18 }