-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT | ||
// file at the top-level directory of this distribution and at | ||
// http://rust-lang.org/COPYRIGHT. | ||
// | ||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | ||
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
#[macro_export] | ||
macro_rules! m { ($($t:tt)*) => { $($t)* } } | ||
|
||
#[macro_export] | ||
macro_rules! n { ($($t:tt)*) => { $($t)* } } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT | ||
// file at the top-level directory of this distribution and at | ||
// http://rust-lang.org/COPYRIGHT. | ||
// | ||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | ||
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
// aux-build:two_macros.rs | ||
|
||
#![feature(item_like_imports, use_extern_macros)] | ||
|
||
extern crate two_macros; // two identity macros `m` and `n` | ||
|
||
mod foo { | ||
pub use two_macros::n as m; | ||
} | ||
|
||
mod m1 { | ||
m!(use two_macros::*;); | ||
use foo::m; // This shadows the glob import | ||
} | ||
|
||
mod m2 { | ||
use two_macros::*; //~ NOTE could also resolve | ||
m! { //~ ERROR ambiguous | ||
//~| NOTE macro-expanded macro imports do not shadow | ||
use foo::m; //~ NOTE could resolve to the name imported here | ||
//~^^^ NOTE in this expansion | ||
} | ||
} | ||
|
||
mod m3 { | ||
use two_macros::m; //~ NOTE could also resolve | ||
fn f() { | ||
use two_macros::n as m; // This shadows the above import | ||
m!(); | ||
} | ||
|
||
fn g() { | ||
m! { //~ ERROR ambiguous | ||
//~| NOTE macro-expanded macro imports do not shadow | ||
use two_macros::n as m; //~ NOTE could resolve to the name imported here | ||
//~^^^ NOTE in this expansion | ||
} | ||
} | ||
} | ||
|
||
mod m4 { | ||
macro_rules! m { () => {} } //~ NOTE could resolve to the macro defined here | ||
use two_macros::m; //~ NOTE could also resolve to the macro imported here | ||
m!(); //~ ERROR ambiguous | ||
} |