]> git.lizzy.rs Git - rust.git/blob - src/test/ui/hygiene/auxiliary/intercrate.rs
Auto merge of #51339 - sdroege:exact-chunks-remainder, r=alexcrichton
[rust.git] / src / test / ui / hygiene / auxiliary / intercrate.rs
1 // Copyright 2017 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 #![feature(decl_macro)]
12
13 pub mod foo {
14     pub use self::bar::m;
15     mod bar {
16         fn f() -> u32 { 1 }
17         pub macro m() {
18             f();
19         }
20     }
21 }
22
23 pub struct SomeType;
24
25 // `$crate`
26 pub macro uses_dollar_crate_modern() {
27     type Alias = $crate::SomeType;
28 }
29
30 pub macro define_uses_dollar_crate_modern_nested($uses_dollar_crate_modern_nested: ident) {
31     macro $uses_dollar_crate_modern_nested() {
32         type AliasCrateModernNested = $crate::SomeType;
33     }
34 }
35
36 #[macro_export]
37 macro_rules! define_uses_dollar_crate_legacy_nested {
38     () => {
39         macro_rules! uses_dollar_crate_legacy_nested {
40             () => {
41                 type AliasLegacyNested = $crate::SomeType;
42             }
43         }
44     }
45 }
46
47 // `crate`
48 pub macro uses_crate_modern() {
49     type AliasCrate = crate::SomeType;
50 }
51
52 pub macro define_uses_crate_modern_nested($uses_crate_modern_nested: ident) {
53     macro $uses_crate_modern_nested() {
54         type AliasCrateModernNested = crate::SomeType;
55     }
56 }