Sign in
android
/
toolchain
/
rustc
/
9cf678059bdfead0671d48dbbb51b152b62d6995
/
.
/
src
/
test
/
rustdoc
/
inline_cross
/
auxiliary
/
macros.rs
blob: 651ae2f1ae8754397b980461eb933214742948e3 [
file
] [
log
] [
blame
]
#![
feature
(
staged_api
)]
#![
stable
(
feature
=
"rust1"
,
since
=
"1.0.0"
)]
/// docs for my_macro
#[
unstable
(
feature
=
"macro_test"
,
issue
=
"none"
)]
#[
deprecated
(
since
=
"1.2.3"
,
note
=
"text"
)]
#[
macro_export
]
macro_rules
!
my_macro
{
()
=>
{};
}