rust/tests/ui/macros/macro-shadowing.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
552 B
Rust
Raw Normal View History

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 { () => {} }
#[macro_use(macro_two)] extern crate two_macros;
2016-10-02 07:46:17 +00:00
macro_rules! m1 { () => {
macro_rules! foo { () => {} }
2016-10-02 07:46:17 +00:00
#[macro_use] //~ ERROR `macro_two` is already in scope
extern crate two_macros as __;
2016-10-02 07:46:17 +00:00
}}
m1!();
2016-10-02 07:46:17 +00:00
foo!(); //~ ERROR `foo` is ambiguous
2016-10-02 07:46:17 +00:00
macro_rules! m2 { () => {
macro_rules! foo { () => {} }
foo!();
2016-10-02 07:46:17 +00:00
}}
m2!();
//^ Since `foo` is not used outside this expansion, it is not a shadowing error.
2016-10-02 07:46:17 +00:00
fn main() {}