]> git.lizzy.rs Git - rust.git/blob - src/test/ui/rust-2018/extern-crate-rename.rs
Rollup merge of #62351 - RalfJung:drop-in-place, r=cramertj
[rust.git] / src / test / 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 was previously accepted
15
16 fn main() {
17     foo();
18 }