Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
rust
/
compile
/
nested_macro_use1.rs
blob: 8a2fd2ac82dbb90154a754aaef7a723e78200103 [
file
] [
log
] [
blame
]
#[
macro_use
]
mod
foo
{
#[
macro_use
]
mod
zim
{
#[
macro_use
]
mod
zoom
{
#[
macro_use
]
mod
zum
{
macro_rules
!
qux
{
()
=>
{};
}
}
}
}
}
fn
main
()
{
qux
!();
// OK
}