mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 17:24:06 +00:00
22 lines
338 B
Rust
22 lines
338 B
Rust
//@ edition:2018
|
|
|
|
// This test is similar to `ambiguity-macros.rs`, but nested in a module.
|
|
|
|
#![allow(non_camel_case_types)]
|
|
|
|
mod foo {
|
|
pub use std::io;
|
|
//~^ ERROR `std` is ambiguous
|
|
|
|
macro_rules! m {
|
|
() => {
|
|
mod std {
|
|
pub struct io;
|
|
}
|
|
}
|
|
}
|
|
m!();
|
|
}
|
|
|
|
fn main() {}
|