rust/tests/ui/feature-gates/feature-gate-allow-internal...

9 lines
148 B
Rust

#![allow(unused_macros)]
#[allow_internal_unstable()] //~ ERROR allow_internal_unstable side-steps
macro_rules! foo {
() => {}
}
fn main() {}