Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rust-lang/rust#89122, which is in FCP, proposes that:
type StringMap<K> where K: PartialOrd = BTreeMap<K, String>;
should instead be spelled as:
type StringMap<K> = BTreeMap<K, String> where K: PartialOrd;
If the proposal passes, we'll need to implement this in syn.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
dtolnay commentedSep 24, 2021
rust-lang/rust#89122, which is in FCP, proposes that:
should instead be spelled as:
If the proposal passes, we'll need to implement this in syn.
The text was updated successfully, but these errors were encountered: