blob: c81d2e538c7f3368c128aba94de4c8736ee1ffa5 [file] [edit]
//! Regression test for <https://github.com/rust-lang/rust/issues/32782>
macro_rules! bar (
() => ()
);
macro_rules! foo (
() => (
#[allow_internal_unstable()]
//~^ ERROR allow_internal_unstable side-steps
//~| ERROR `#[allow_internal_unstable]` attribute cannot be used on macro calls
bar!();
);
);
foo!();
fn main() {}