]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-allow-internal-unstable.rs
Merge commit 'e36a20c24f35a4cee82bbdc600289104c9237c22' into ra-sync-and-pms-component
[rust.git] / src / test / ui / feature-gates / feature-gate-allow-internal-unstable.rs
1 #![allow(unused_macros)]
2
3 #[allow_internal_unstable()] //~ ERROR allow_internal_unstable side-steps
4 macro_rules! foo {
5     () => {}
6 }
7
8 fn main() {}