macro_rules! parse_fgi_prod {
    { ($($a:tt)+)($($b:tt)+) } => { ... };
    { ($($a:tt)+)$($more:tt)+ } => { ... };
    { $($any:tt)* } => { ... };
}
Expand description

this macro is a helper for fgi_vtype, not for external use