Closed
Description
macro_rules! test {
($asdfghj:expr, $qwertyuiop:expr, $zxcvbnmasdfghjkl:expr, $aeiouaeiouaeiou:expr, $add:expr) => {{
return;
}};
}
Using rustfmt 1.4.8 nightly with a .rustfmt.toml
with the following:
unstable_features = true
error_on_line_overflow = true
error_on_unformatted = true
#format_macro_matchers = true
If this is manually formatted, overflow will not happen. However, if the format_macro_matchers = true
line is uncommented, the line will always be reformatted to overflow until another character is added.