rust/tests/ui/feature-gates/feature-gate-allow-internal-unstable-nested-macro.rs
2023-01-11 09:32:08 +00:00

18 lines
301 B
Rust

// gate-test-allow_internal_unstable
#![allow(unused_macros)]
macro_rules! bar {
() => {
// more layers don't help:
#[allow_internal_unstable()] //~ ERROR allow_internal_unstable side-steps
macro_rules! baz {
() => {}
}
}
}
bar!();
fn main() {}