macro_rules! debug {
($i:ident) => { ... };
($i:ident, $s:literal) => { ... };
($i:ident, $f:ident) => { ... };
($i:ident, $f:ident, $s:literal) => { ... };
($($arg:tt)*) => { ... };
}
macro_rules! debug {
($i:ident) => { ... };
($i:ident, $s:literal) => { ... };
($i:ident, $f:ident) => { ... };
($i:ident, $f:ident, $s:literal) => { ... };
($($arg:tt)*) => { ... };
}