2018-02-24 19:11:06 -08:00
|
|
|
// aux-build:unstable-macros.rs
|
|
|
|
|
|
|
|
#![feature(staged_api)]
|
|
|
|
#[macro_use] extern crate unstable_macros;
|
|
|
|
|
|
|
|
#[unstable(feature = "local_unstable", issue = "0")]
|
|
|
|
macro_rules! local_unstable { () => () }
|
|
|
|
|
|
|
|
fn main() {
|
2019-06-21 01:59:30 +03:00
|
|
|
local_unstable!(); //~ ERROR: macro local_unstable! is unstable
|
2018-02-24 19:11:06 -08:00
|
|
|
unstable_macro!(); //~ ERROR: macro unstable_macro! is unstable
|
|
|
|
}
|