Skip to content
New issue

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

Create braces around closure body during printing if needed #1658

Merged
merged 1 commit into from
May 16, 2024

Conversation

dtolnay
Copy link
Owner

@dtolnay dtolnay commented May 16, 2024

If a closure has an omitted return type, any kind of expression is allowed in the closure body: || 1 + 1. But if there is a return type, only a block expression is allowed: || -> i32 { 1 + 1 }. Without braces || -> i32 1 + 1 is not legal syntax.

@dtolnay dtolnay merged commit 83ea289 into master May 16, 2024
29 checks passed
@dtolnay dtolnay deleted the closurebrace branch May 16, 2024 05:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant