]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/uniform-paths/macros-nested.rs
373734345fc34d230334eae5c1a77f5f7c4594f6
[rust.git] / src / test / run-pass / uniform-paths / macros-nested.rs
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 // run-pass
12 #![allow(non_camel_case_types)]
13
14 // edition:2018
15
16 #![feature(uniform_paths)]
17
18 // This test is similar to `macros.rs`, but nested in modules.
19
20 mod foo {
21     // Test that ambiguity errors are not emitted between `self::test` and
22     // `::test`, assuming the latter (crate) is not in `extern_prelude`.
23     macro_rules! m1 {
24         () => {
25             mod test {
26                 pub struct Foo(pub ());
27             }
28         }
29     }
30     pub use test::Foo;
31     m1!();
32
33     // Test that qualified paths can refer to both the external crate and local item.
34     macro_rules! m2 {
35         () => {
36             mod std {
37                 pub struct io(pub ());
38             }
39         }
40     }
41     pub use ::std::io as std_io;
42     pub use self::std::io as local_io;
43     m2!();
44 }
45
46 // Test that we can refer to the external crate unqualified
47 // (when there isn't a local item with the same name).
48 use std::io;
49
50 mod bar {
51     // Also test the unqualified external crate import in a nested module,
52     // to show that the above import doesn't resolve through a local `std`
53     // item, e.g. the automatically injected `extern crate std;`, which in
54     // the Rust 2018 should no longer be visible through `crate::std`.
55     pub use std::io;
56 }
57
58
59 fn main() {
60     foo::Foo(());
61     foo::std_io::stdout();
62     foo::local_io(());
63     io::stdout();
64     bar::io::stdout();
65 }