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")]
|
2018-06-06 04:13:55 +01:00
|
|
|
#[rustc_deprecated(since = "1.2.3", reason = "text")]
|
|
|
|
|
#[macro_export]
|
|
|
|
|
macro_rules! my_macro {
|
|
|
|
|
() => ()
|
|
|
|
|
}
|