-
Notifications
You must be signed in to change notification settings - Fork 971
Closed
Labels
A-commentsArea: commentsArea: commentsC-bugCategory: this is a bug; use also I-* labels for specific bug kinds, e.g. I-non-idempotency or I-ICECategory: this is a bug; use also I-* labels for specific bug kinds, e.g. I-non-idempotency or I-ICE
Description
source:
#[derive(A,
B,
C,
D,
// E,
)]
fn foo() {
bar(1,
2,
3,
4,
// 5,
);
}post-rustfmt:
#[derive(A, B, C, D)]
fn foo() {
bar(
1, 2, 3, 4,
// 5,
);
}I would expect something like:
#[derive(
A, B, C, D,
// E,
)]
fn foo() {
bar(
1, 2, 3, 4,
// 5,
);
}I'd be happy to submit a PR for this.
iago-lito
Metadata
Metadata
Assignees
Labels
A-commentsArea: commentsArea: commentsC-bugCategory: this is a bug; use also I-* labels for specific bug kinds, e.g. I-non-idempotency or I-ICECategory: this is a bug; use also I-* labels for specific bug kinds, e.g. I-non-idempotency or I-ICE