2018-06-05 22:13:55 -05:00
|
|
|
#![feature(staged_api)]
|
|
|
|
#![stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
|
|
|
|
/// docs for my_macro
|
2019-12-21 05:16:18 -06:00
|
|
|
#[unstable(feature = "macro_test", issue = "none")]
|
2022-04-07 20:20:32 -05:00
|
|
|
#[deprecated(since = "1.2.3", note = "text")]
|
2018-06-05 22:13:55 -05:00
|
|
|
#[macro_export]
|
|
|
|
macro_rules! my_macro {
|
2022-04-07 20:20:32 -05:00
|
|
|
() => {};
|
2018-06-05 22:13:55 -05:00
|
|
|
}
|