summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/configs/format_macro_bodies/false.rs
blob: ec871b25bf7c9645cdcd8722f35b3e2556bbbe02 (plain)
1
2
3
4
5
6
// rustfmt-format_macro_bodies: false

macro_rules! foo {
    ($a: ident : $b: ty) => { $a(42): $b; };
    ($a: ident $b: ident $c: ident) => { $a=$b+$c; };
}