macro_rules! quote {
(#$quoted:ident) => { ... };
(#$quoted:ident $($rest:tt)+) => { ... };
() => { ... };
($only:tt) => { ... };
($head:tt $($tail:tt)+) => { ... };
}macro_rules! quote {
(#$quoted:ident) => { ... };
(#$quoted:ident $($rest:tt)+) => { ... };
() => { ... };
($only:tt) => { ... };
($head:tt $($tail:tt)+) => { ... };
}