mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-30 12:07:40 +00:00
12 lines
253 B
Rust
12 lines
253 B
Rust
![]() |
#![feature(staged_api)]
|
||
|
|
||
|
#![stable(feature = "rust1", since = "1.0.0")]
|
||
|
|
||
|
/// docs for my_macro
|
||
|
#[unstable(feature = "macro_test", issue = "0")]
|
||
|
#[rustc_deprecated(since = "1.2.3", reason = "text")]
|
||
|
#[macro_export]
|
||
|
macro_rules! my_macro {
|
||
|
() => ()
|
||
|
}
|