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
macro_rules! test {
() => {
fn from() {
None.expect(
"We asserted that `buffer.len()` is exactly `$n` so we can expect \
`ApInt::from_iter` to be successful.",
)
}
};
}
This gets reformatted to
macro_rules! test {
() => {
fn from() {
None.expect(
"We asserted that `buffer.len()` is exactly `$n` so we can expect \
`ApInt::from_iter` to be successful.",
)
}
};
}
Because there is a space in there and not a whole number of indentations, I think it is some off-by-one error in some code that deals with the indentations.
The text was updated successfully, but these errors were encountered:
On the latest rustfmt with a
.rustfmt.toml
ofand the code
This gets reformatted to
Because there is a space in there and not a whole number of indentations, I think it is some off-by-one error in some code that deals with the indentations.
The text was updated successfully, but these errors were encountered: