Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
imports
/
auxiliary
/
two_macros.rs
blob: 92c211467d83dbde0ee22f4146c532c7eecfaba9 [
file
] [
log
] [
blame
]
#[
macro_export
]
macro_rules
!
m
{
(
$
(
$t
:
tt
)*)
=>
{
$
(
$t
)*
}
}
#[
macro_export
]
macro_rules
!
n
{
(
$
(
$t
:
tt
)*)
=>
{
$
(
$t
)*
}
}