You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Formatting the following code produces awful results:
fnmain(){{{{let result = this_is_a_quite_long_name(
another_long_one,&|from, to| -> LongResult<Words>{()// this comment is to keep it from collapsing})?;}}}}
it's formatted into this:
fnmain(){{{{let result = this_is_a_quite_long_name(another_long_one,&|from,
to|
-> LongResult<Words,>{()// this comment is to keep it from collapsing})?;}}}}
Formatting the following code produces awful results:
it's formatted into this:
playground: link
I can ignore it by using
#[rustfmt::skip]
but this behavior seems incorrect.The text was updated successfully, but these errors were encountered: