Sign in
rust
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
macros
/
auxiliary
/
macro_with_super_1.rs
blob: b015500df06a950ed27d826074241ebb43d6feaf [
file
] [
log
] [
blame
] [
edit
]
#![
crate_type
=
"lib"
]
#[
macro_export
]
macro_rules
!
declare
{
()
=>
(
pub
fn
aaa
()
{}
pub
mod
bbb
{
use
super
::
aaa
;
pub
fn
ccc
()
{
aaa
();
}
}
)
}