Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
rust
/
compile
/
nested_macro_definition.rs
blob: b71afbd7166e8e3f95350ca05db8aee6c9be38dc [
file
] [
log
] [
blame
]
macro_rules
!
toto
{
()
=>
{
macro_rules
!
tata
{
()
=>
{
let
_i
=
0
;
};
}
};
}
pub
fn
main
()
{
toto
!();
tata
!();
}