Why can't pat_param be followed by a colon in macro_rules?

I wrote this macro only to discover that pat_param fragments (otherwise known as PatternNoTopAlts cannot be followed by :s. As far as I can tell, PatternNoTopAlts cannot be terminated by a :. I get that there are potential forward compatibility concerns, but it is also my understanding that StructPatternFields make the prospect of adding type annotations to patterns quite awkward, and I figured that the ability to match something as integral as a let statement would be a higher priority.

Are there any other uses of : in patterns being considered?

Given that pat_param is in parameters (duh) which are followed by : always, this seems at least plausible? I don't think we'd want to do it for pat in general, but for pat_param maybe?