blob: 4d90b8e2a531a16fdd2a2d2706d497655a3960ea [file] [log] [blame] [edit]
//@edition: 2018
// https://github.com/rust-lang/rust/issues/98291
macro_rules! wrap {
() => {
macro_rules! _a {
() => {
""
};
}
};
}
wrap!();
fn main() {
format_args!(a!()); //~ ERROR: cannot find macro `a` in this scope
env!(a!()); //~ ERROR: cannot find macro `a` in this scope
}