blob: a5f538ba6b36acae48dcc2598a99d04b059214b0 [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 = "none")]
macro_rules! local_unstable { () => () }
fn main() {
unstable_macro!();
local_unstable!();
}