2019-06-21 18:44:45 -05:00
|
|
|
#![feature(decl_macro)]
|
2018-02-24 21:11:06 -06:00
|
|
|
#![feature(staged_api)]
|
2018-07-24 12:24:12 -05:00
|
|
|
#![stable(feature = "unit_test", since = "1.0.0")]
|
2018-02-24 21:11:06 -06:00
|
|
|
|
2019-12-21 05:16:18 -06:00
|
|
|
#[unstable(feature = "unstable_macros", issue = "none")]
|
2018-02-24 21:11:06 -06:00
|
|
|
#[macro_export]
|
|
|
|
macro_rules! unstable_macro{ () => () }
|
2019-06-21 18:44:45 -05:00
|
|
|
|
|
|
|
#[stable(feature = "deprecated_macros", since = "1.0.0")]
|
2022-02-15 01:00:21 -06:00
|
|
|
#[rustc_deprecated(since = "1.0.0", note = "deprecation note")]
|
2019-06-21 18:44:45 -05:00
|
|
|
#[macro_export]
|
|
|
|
macro_rules! deprecated_macro{ () => () }
|
|
|
|
|
|
|
|
// FIXME: Cannot use a `pub` macro 2.0 in a staged API crate due to reachability issues.
|
2019-12-21 05:16:18 -06:00
|
|
|
// #[unstable(feature = "unstable_macros", issue = "none")]
|
2019-06-21 18:44:45 -05:00
|
|
|
// pub macro unstable_macro_modern() {}
|