2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2018-02-24 21:11:06 -06:00
|
|
|
// aux-build:unstable-macros.rs
|
|
|
|
|
2019-06-20 17:55:40 -05:00
|
|
|
#![feature(unstable_macros, local_unstable)]
|
2018-02-24 21:11:06 -06:00
|
|
|
|
|
|
|
#[macro_use] extern crate unstable_macros;
|
|
|
|
|
|
|
|
#[unstable(feature = "local_unstable", issue = "0")]
|
|
|
|
macro_rules! local_unstable { () => () }
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
unstable_macro!();
|
|
|
|
local_unstable!();
|
|
|
|
}
|