blob: b71afbd7166e8e3f95350ca05db8aee6c9be38dc [file] [log] [blame]
macro_rules! toto {
() => {
macro_rules! tata {
() => {
let _i = 0;
};
}
};
}
pub fn main() {
toto!();
tata!();
}