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