rust/tests/ui/rust-2018/uniform-paths/ambiguity-macros.rs

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

20 lines
288 B
Rust
Raw Normal View History

// edition:2018
// This test is similar to `ambiguity.rs`, but with macros defining local items.
#![allow(non_camel_case_types)]
use std::io;
//~^ ERROR `std` is ambiguous
macro_rules! m {
() => {
mod std {
pub struct io;
}
}
}
m!();
fn main() {}