-
Couldn't load subscription status.
- Fork 961
Closed
Labels
C-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-ICEI-poor-formattingIssue: poor formattingIssue: poor formatting
Description
macro_rules! abait { ($x:expr) => { Ok(()) } }
mod a {
fn foo() -> Result<(), ()> {
unsafe {
(
abait!(proxy.load_account(ahc_client_end, TEST_ACCOUNT_ID.clone().as_mut().into()))?,
(),
)
};
Ok(())
}
}is the result of rustfmt with the default config, but it should be wrapping the abait! line. If abait! is replaced with a function abaity, rustfmt will wrap the line.
Metadata
Metadata
Assignees
Labels
C-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-ICEI-poor-formattingIssue: poor formattingIssue: poor formatting