blob: 6deaeb81179564bcee22724c08281891acdb538f [file] [log] [blame]
macro_rules! m {
() => {
// Avoid having more than one `$crate`-named item in the same module,
// as even though they error, they still parse as `$crate` and conflict.
mod foo {
struct $crate {} //~ ERROR expected identifier, found reserved identifier `$crate`
}
use $crate; // OK
//~^ WARN `$crate` may not be imported
use $crate as $crate; //~ ERROR expected identifier, found reserved identifier `$crate`
//~^ WARN `$crate` may not be imported
}
}
m!();
fn main() {}