2019-06-22 02:44:45 +03:00
|
|
|
#![feature(decl_macro)]
|
2018-02-24 19:11:06 -08:00
|
|
|
#![feature(staged_api)]
|
2018-07-24 18:24:12 +01:00
|
|
|
#![stable(feature = "unit_test", since = "1.0.0")]
|
2018-02-24 19:11:06 -08:00
|
|
|
|
2019-12-21 13:16:18 +02:00
|
|
|
#[unstable(feature = "unstable_macros", issue = "none")]
|
2018-02-24 19:11:06 -08:00
|
|
|
#[macro_export]
|
|
|
|
macro_rules! unstable_macro{ () => () }
|
2019-06-22 02:44:45 +03:00
|
|
|
|
|
|
|
#[stable(feature = "deprecated_macros", since = "1.0.0")]
|
2022-03-04 21:59:18 -05:00
|
|
|
#[deprecated(since = "1.0.0", note = "deprecation note")]
|
2019-06-22 02:44:45 +03: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 13:16:18 +02:00
|
|
|
// #[unstable(feature = "unstable_macros", issue = "none")]
|
2019-06-22 02:44:45 +03:00
|
|
|
// pub macro unstable_macro_modern() {}
|