Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
definition-reachable
/
auxiliary
/
nested-fn-macro.rs
blob: a39e8c986c3911df50ec764a1c49a886f7d38b61 [
file
] [
log
] [
blame
] [
edit
]
#![
feature
(
decl_macro
)]
mod
n
{
pub
(
crate
)
mod
p
{
pub
fn
f
()
->
i32
{
12
}
}
}
pub
macro m
()
{
n
::
p
::
f
()
}