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