]> git.lizzy.rs Git - rust.git/blob - src/test/ui/imports/local-modularized.rs
resolve: Modularize crate-local `#[macro_export] macro_rules`
[rust.git] / src / test / ui / imports / local-modularized.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 // compile-pass
12
13 #![feature(use_extern_macros)]
14
15 #[macro_export(local_inner_macros)]
16 macro_rules! dollar_crate_exported {
17     (1) => { $crate::exported!(); };
18     (2) => { exported!(); };
19 }
20
21 // Before `exported` is defined
22 exported!();
23
24 mod inner {
25
26     ::exported!();
27     crate::exported!();
28     dollar_crate_exported!(1);
29     dollar_crate_exported!(2);
30
31     mod inner_inner {
32         #[macro_export]
33         macro_rules! exported {
34             () => ()
35         }
36     }
37
38     // After `exported` is defined
39     ::exported!();
40     crate::exported!();
41     dollar_crate_exported!(1);
42     dollar_crate_exported!(2);
43 }
44
45 exported!();
46
47 fn main() {}