1 // run-pass
2 // aux-build:unstable-macros.rs
3 
4 #![unstable(feature = "one_two_three_testing", issue = "none")]
5 #![feature(staged_api, unstable_macros, local_unstable)]
6 
7 #[macro_use] extern crate unstable_macros;
8 
9 #[unstable(feature = "local_unstable", issue = "none")]
10 macro_rules! local_unstable { () => () }
11 
main()12 fn main() {
13     unstable_macro!();
14     local_unstable!();
15 }
16