blob: 817bddf69562b9847685bf4184bd58ef52d5a0e2 [file] [log] [blame]
// run-pass
// aux-build:unstable-macros.rs
#![feature(unstable_macros, local_unstable)]
#[macro_use] extern crate unstable_macros;
#[unstable(feature = "local_unstable", issue = "0")]
macro_rules! local_unstable { () => () }
fn main() {
unstable_macro!();
local_unstable!();
}