You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rust_type()s shouldn't follow "dyn" and "impl"; instead it should be something that parses type parameter bounds (which include rust types AND lifetimes) (ref) (ref). I think the rules to parse that might already be written as part of rust_where_clause() and could perhaps be factored out, but I don't have time at the moment to verify that.
The text was updated successfully, but these errors were encountered:
The following will not parse:
The error:
I believe the issue is in the
rust_type()
rule of grammar.rustpeg:rust_type()
s shouldn't follow "dyn" and "impl"; instead it should be something that parses type parameter bounds (which include rust types AND lifetimes) (ref) (ref). I think the rules to parse that might already be written as part ofrust_where_clause()
and could perhaps be factored out, but I don't have time at the moment to verify that.The text was updated successfully, but these errors were encountered: