We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Input
fn main() { if 'a' == 0 /* x */ as char {} } fn main() { if 1234 == 'a' /* x */ as i32 {} } fn main() { if 'a' == b // x as char {} }
Output
Expected output
Meta
The text was updated successfully, but these errors were encountered:
The problem seem to happen in pairs.rs, rewrite_pairs_multiline() function, line 128:
pairs.rs
rewrite_pairs_multiline()
if last_line_width(&result) + offset <= nested_shape.used_width() {
For some reason the decision is that the line will exceed the allowed line size.
Sorry, something went wrong.
topecongiro
No branches or pull requests
Input
Output
Expected output
Meta
The text was updated successfully, but these errors were encountered: