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