rust/tests/target/issue-2534/format_macro_matchers_true.rs
Yacin Tmimi f2c31ba04d Add tests for issue 2534
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`.
2022-07-19 17:07:01 -05:00

7 lines
131 B
Rust

// rustfmt-format_macro_matchers: true
macro_rules! foo {
($a:ident : $b:ty) => {};
($a:ident $b:ident $c:ident) => {};
}