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
When running the rustfmt on a line that contains a block comment, the lines doesn't get formatted at all. My expectation is that the line gets formatted correctly as if the comment block wasn't there. rustfmt version: rustfmt 1.5.1-stable
Test case:
fn main() {
let tup = (1, 2);
let (first, second)/* your pattern here */ = tup;
}
Expectation:
fn main() {
let tup = (1, 2);
let (first, second)/* your pattern here */ = tup;
}
Actual:
fn main() {
let tup = (1, 2);
let (first, second)/* your pattern here */ = tup;
}