f2c31ba04d
Closes 2534 The behavior described in the original issue can no longer be reproduced. The tests show that to be the case regardless of if `format_macro_matchers` is `true` or `false`.
7 lines
131 B
Rust
7 lines
131 B
Rust
// rustfmt-format_macro_matchers: true
|
|
|
|
macro_rules! foo {
|
|
($a:ident : $b:ty) => {};
|
|
($a:ident $b:ident $c:ident) => {};
|
|
}
|