Sign in
rust
/
rust-lang
/
rust
/
refs/heads/try
/
.
/
tests
/
ui
/
definition-reachable
/
auxiliary
/
private-use-macro.rs
blob: 4f283d9c19c04f55b7533321c0aff385afa04fb4 [
file
] [
log
] [
blame
] [
edit
]
#![
feature
(
decl_macro
)]
mod
n
{
pub
static
S
:
i32
=
57
;
}
use
n
::
S
;
pub
macro m
()
{
S
}