Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
macros
/
auxiliary
/
macro-def-site-super.rs
blob: cab747c2c059149c8fb657ff8eaca4e7ad8b82a7 [
file
] [
log
] [
blame
]
#![
feature
(
decl_macro
)]
mod
inner1
{
pub
struct
Struct
{}
pub
mod
inner2
{
pub
macro mac
()
{
super
::
Struct
}
}
}
pub
use
inner1
::
inner2
as
public
;