Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
rustdoc
/
auxiliary
/
macro_pub_in_module.rs
blob: 81efa1db536bdf00e15800cdcaf44af9606966d3 [
file
] [
log
] [
blame
] [
edit
]
//@ edition:2018
#![
feature
(
decl_macro
)]
#![
crate_name
=
"external_crate"
]
pub
mod
some_module
{
/* == Make sure the logic is not affected by a re-export == */
mod
private
{
pub
macro external_macro
()
{}
}
pub
use
private
::
external_macro
;
}