]> git.proxmox.com Git - rustc.git/blame - src/tools/rustfmt/tests/source/configs/format_macro_matchers/true.rs
New upstream version 1.52.1+dfsg1
[rustc.git] / src / tools / rustfmt / tests / source / configs / format_macro_matchers / true.rs
CommitLineData
f20569fa
XL
1// rustfmt-format_macro_matchers: true
2
3macro_rules! foo {
4 ($a: ident : $b: ty) => { $a(42): $b; };
5 ($a: ident $b: ident $c: ident) => { $a=$b+$c; };
6}