Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
rust
/
compile
/
nested_macro_use3.rs
blob: 751833313c918e6a013ea7886054223a1fe75fac [
file
] [
log
] [
blame
]
#[
macro_use
]
mod
num
{
#[
macro_use
]
mod
macros
{
macro_rules
!
a
{
()
=>
()
}
}
a
!();
}
fn
main
()
->
i32
{
a
!();
0
}