Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
methods
/
auxiliary
/
macro-in-other-crate.rs
blob: feda084634abeedbe722d7a57fc4fe1e21c6ac97 [
file
] [
log
] [
blame
]
#[
macro_export
]
macro_rules
!
mac
{
(
$ident
:
ident
)
=>
{
let
$ident
=
42
;
}
}
#[
macro_export
]
macro_rules
!
inline
{
()
=>
()
}