Skip to content

Create braces around closure body during printing if needed#1658

Merged
dtolnay merged 1 commit intomasterfrom
closurebrace
May 16, 2024
Merged

Create braces around closure body during printing if needed#1658
dtolnay merged 1 commit intomasterfrom
closurebrace

Conversation

@dtolnay
Copy link
Copy Markdown
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
@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.

1 participant