Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
hygiene
/
auxiliary
/
nested-dollar-crate.rs
blob: e5caa0f9cf80938dbfe59648599727840012a668 [
file
] [
log
] [
blame
] [
edit
]
pub
const
IN_DEF_CRATE
:
&
str
=
"In def crate!"
;
macro_rules
!
make_it
{
()
=>
{
#[
macro_export
]
macro_rules
!
inner
{
()
=>
{
$crate
::
IN_DEF_CRATE
}
}
}
}
make_it
!();