mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
18 lines
349 B
Rust
18 lines
349 B
Rust
#[macro_export]
|
|
macro_rules! foo { () => {} }
|
|
|
|
#[macro_export]
|
|
macro_rules! foo { () => {} } //~ ERROR the name `foo` is defined multiple times
|
|
|
|
mod inner1 {
|
|
#[macro_export]
|
|
macro_rules! bar { () => {} }
|
|
}
|
|
|
|
mod inner2 {
|
|
#[macro_export]
|
|
macro_rules! bar { () => {} } //~ ERROR the name `bar` is defined multiple times
|
|
}
|
|
|
|
fn main() {}
|