2016-10-02 02:46:17 -05:00
|
|
|
//@ aux-build:two_macros.rs
|
|
|
|
|
2017-05-12 02:53:58 -05:00
|
|
|
#![allow(unused_macros)]
|
|
|
|
|
2016-10-02 02:46:17 -05:00
|
|
|
macro_rules! foo { () => {} }
|
|
|
|
macro_rules! macro_one { () => {} }
|
2016-10-10 22:42:06 -05:00
|
|
|
#[macro_use(macro_two)] extern crate two_macros;
|
2016-10-02 02:46:17 -05:00
|
|
|
|
|
|
|
macro_rules! m1 { () => {
|
2018-08-27 17:41:07 -05:00
|
|
|
macro_rules! foo { () => {} }
|
2016-10-02 02:46:17 -05:00
|
|
|
|
2016-10-10 22:42:06 -05:00
|
|
|
#[macro_use] //~ ERROR `macro_two` is already in scope
|
|
|
|
extern crate two_macros as __;
|
2016-10-02 02:46:17 -05:00
|
|
|
}}
|
2017-12-10 14:29:24 -06:00
|
|
|
m1!();
|
2016-10-02 02:46:17 -05:00
|
|
|
|
2018-08-27 17:41:07 -05:00
|
|
|
foo!(); //~ ERROR `foo` is ambiguous
|
2016-10-02 02:46:17 -05:00
|
|
|
|
|
|
|
macro_rules! m2 { () => {
|
|
|
|
macro_rules! foo { () => {} }
|
2018-08-28 19:23:28 -05:00
|
|
|
foo!();
|
2016-10-02 02:46:17 -05:00
|
|
|
}}
|
|
|
|
m2!();
|
2016-10-10 22:42:06 -05:00
|
|
|
//^ Since `foo` is not used outside this expansion, it is not a shadowing error.
|
2016-10-02 02:46:17 -05:00
|
|
|
|
|
|
|
fn main() {}
|