Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
macros
/
auxiliary
/
macro_with_super_1.rs
blob: b015500df06a950ed27d826074241ebb43d6feaf [
file
] [
log
] [
blame
]
#![
crate_type
=
"lib"
]
#[
macro_export
]
macro_rules
!
declare
{
()
=>
(
pub
fn
aaa
()
{}
pub
mod
bbb
{
use
super
::
aaa
;
pub
fn
ccc
()
{
aaa
();
}
}
)
}