We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
=>
In some cases, a multi-line expression in a match arm does not get braces, violating the spec.
This leads to code like this:
pat => fun( a, b, c, d, )
We also don't generate code like this:
if foo { fun( a, b, c, d, )}
so it seems odd to do that for match arms.