]> git.lizzy.rs Git - rust.git/blob - src/test/ui/imports/macro-paths.rs
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / imports / macro-paths.rs
1 // Copyright 2016 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:two_macros.rs
12
13 extern crate two_macros;
14
15 mod foo {
16     pub mod bar {
17         pub use two_macros::m;
18     }
19 }
20
21 fn f() {
22     use foo::*;
23     bar::m! { //~ ERROR ambiguous
24         mod bar { pub use two_macros::m; }
25     }
26 }
27
28 pub mod baz {
29     pub use two_macros::m;
30 }
31
32 fn g() {
33     baz::m! { //~ ERROR ambiguous
34         mod baz { pub use two_macros::m; }
35     }
36 }
37
38 fn main() {}