]> git.lizzy.rs Git - rust.git/blob - src/test/ui/rust-2018/extern-crate-submod.fixed
Rollup merge of #51014 - GuillaumeGomez:env_docs, r=QuietMisdreavus
[rust.git] / src / test / ui / rust-2018 / extern-crate-submod.fixed
1 // Copyright 2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // aux-build:edition-lint-paths.rs
12 // run-rustfix
13
14 // Oddball: extern crate appears in a submodule, making it harder for
15 // us to rewrite paths. We don't (and we leave the `extern crate` in
16 // place).
17
18 #![feature(rust_2018_preview)]
19 #![deny(absolute_paths_not_starting_with_crate)]
20
21 mod m {
22     // Because this extern crate does not appear at the root, we
23     // ignore it altogether.
24     pub extern crate edition_lint_paths;
25 }
26
27 // And we don't being smart about paths like this, even though you
28 // *could* rewrite it to `use edition_lint_paths::foo`
29 use crate::m::edition_lint_paths::foo;
30 //~^ ERROR absolute paths must start
31 //~| WARNING this was previously accepted
32
33 fn main() {
34     foo();
35 }
36