rustc/tests/ui/feature-gates/feature-gate-allow-internal-unstable.rs
2023-08-02 10:33:26 +02:00

9 lines
148 B
Rust

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