Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
macros
/
auxiliary
/
macro-in-other-crate.rs
blob: db8e92018653757a5efb1dcd994ae5492ede559a [
file
] [
log
] [
blame
]
#[
macro_export
]
macro_rules
!
mac
{
(
$ident
:
ident
)
=>
{
let
$ident
=
42
;
}
}
#[
macro_export
]
macro_rules
!
inline
{
()
=>
()
}
#[
macro_export
]
macro_rules
!
from_prelude
{
()
=>
()
}