diff options
| author | Yacin Tmimi <yacintmimi@gmail.com> | 2022-07-19 00:37:32 -0400 |
|---|---|---|
| committer | Caleb Cartwright <calebcartwright@users.noreply.github.com> | 2022-07-19 17:07:01 -0500 |
| commit | f2c31ba04db6bf07c140c86bfbe2cb16f1b83a8e (patch) | |
| tree | e2ab94abfa202738043ca41c0d8103192c0dc171 | |
| parent | 05332b8c50c79c86b4715b764e4967016845273f (diff) | |
| download | rust-f2c31ba04db6bf07c140c86bfbe2cb16f1b83a8e.tar.gz rust-f2c31ba04db6bf07c140c86bfbe2cb16f1b83a8e.zip | |
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`.
| -rw-r--r-- | tests/target/issue-2534/format_macro_matchers_false.rs | 6 | ||||
| -rw-r--r-- | tests/target/issue-2534/format_macro_matchers_true.rs | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/tests/target/issue-2534/format_macro_matchers_false.rs b/tests/target/issue-2534/format_macro_matchers_false.rs new file mode 100644 index 00000000000..2038ed7f1d0 --- /dev/null +++ b/tests/target/issue-2534/format_macro_matchers_false.rs @@ -0,0 +1,6 @@ +// rustfmt-format_macro_matchers: false + +macro_rules! foo { + ($a:ident : $b:ty) => {}; + ($a:ident $b:ident $c:ident) => {}; +} diff --git a/tests/target/issue-2534/format_macro_matchers_true.rs b/tests/target/issue-2534/format_macro_matchers_true.rs new file mode 100644 index 00000000000..01d939add4d --- /dev/null +++ b/tests/target/issue-2534/format_macro_matchers_true.rs @@ -0,0 +1,6 @@ +// rustfmt-format_macro_matchers: true + +macro_rules! foo { + ($a:ident : $b:ty) => {}; + ($a:ident $b:ident $c:ident) => {}; +} |
