In some cases, a multi-line expression in a match arm does *not* get braces, violating [the spec](https://doc.rust-lang.org/1.0.0/style/style/braces.html#match-arms-get-braces,-except-for-single-line-expressions.). This leads to code like this: ```rust pat => fun( a, b, c, d, ) ``` We also don't generate code like this: ```rust if foo { fun( a, b, c, d, )} ``` so it seems odd to do that for match arms.