]> git.lizzy.rs Git - rust.git/blob - src/test/ui/imports/glob-shadowing.rs
Auto merge of #54720 - davidtwco:issue-51191, r=nikomatsakis
[rust.git] / src / test / ui / imports / glob-shadowing.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 #![feature(decl_macro)]
12
13 mod m {
14     pub macro env($e: expr) { $e }
15     pub macro fenv() { 0 }
16 }
17
18 mod glob_in_normal_module {
19     use m::*;
20     fn check() {
21         let x = env!("PATH"); //~ ERROR `env` is ambiguous
22     }
23 }
24
25 mod glob_in_block_module {
26     fn block() {
27         use m::*;
28         fn check() {
29             let x = env!("PATH"); //~ ERROR `env` is ambiguous
30         }
31     }
32 }
33
34 mod glob_shadows_item {
35     pub macro fenv($e: expr) { $e }
36     fn block() {
37         use m::*;
38         fn check() {
39             let x = fenv!(); //~ ERROR `fenv` is ambiguous
40         }
41     }
42 }
43
44 fn main() {}