We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
For example, one can do let (x, y) = (0, 4,); x but not let (x, y,) = (0, 4,); x which is is inconsistent and annoying when implementing macros.
let (x, y) = (0, 4,); x
let (x, y,) = (0, 4,); x
The text was updated successfully, but these errors were encountered:
If we're going to be consistent, then we need to commit to allowing trailing commas everywhere that commas can appear (such as function definitions).
Nominating for Well-Defined.
Sorry, something went wrong.
Triage: still not parsed.
This issue is similar to #6506, #8788, and (less so) #5905.
Accepted for milestone 1, well-defined
de50c56
Successfully merging a pull request may close this issue.
For example, one can do
let (x, y) = (0, 4,); x
but notlet (x, y,) = (0, 4,); x
which is is inconsistent and annoying when implementing macros.The text was updated successfully, but these errors were encountered: