]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-allow-internal-unstable.rs
parser will not give wrong help message for 'public'
[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() {}