]> git.proxmox.com Git - rustc.git/blob - src/test/rustdoc/inline_cross/auxiliary/macros.rs
Update unsuspicious file list
[rustc.git] / src / test / rustdoc / inline_cross / auxiliary / macros.rs
1 #![feature(staged_api)]
2 #![stable(feature = "rust1", since = "1.0.0")]
3
4 /// docs for my_macro
5 #[unstable(feature = "macro_test", issue = "none")]
6 #[deprecated(since = "1.2.3", note = "text")]
7 #[macro_export]
8 macro_rules! my_macro {
9 () => {};
10 }