blob: 2165be9745229f19d35bb5606388c6f3e1fcc1a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#![feature(staged_api)]
#![stable(feature = "rust1", since = "1.0.0")]
/// docs for my_macro
#[unstable(feature = "macro_test", issue = "none")]
#[rustc_deprecated(since = "1.2.3", reason = "text")]
#[macro_export]
macro_rules! my_macro {
() => ()
}
|