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