macro_rules! route {
( $path:expr , {
$( $m:tt => $handle:expr ; )*
} ) => { ... };
( $path:expr , {
$( $m:tt => $handle:expr ); * // missing trailing comma
} ) => { ... };
}macro_rules! route {
( $path:expr , {
$( $m:tt => $handle:expr ; )*
} ) => { ... };
( $path:expr , {
$( $m:tt => $handle:expr ); * // missing trailing comma
} ) => { ... };
}