Sign in
rust
/
rustfmt
/
refs/heads/rust-1.44-beta
/
.
/
tests
/
source
/
configs
/
format_macro_bodies
/
false.rs
blob: d618a1ac3f9b25b7eb3ac1ab950f2412b5e5ebd3 [
file
] [
edit
]
// rustfmt-format_macro_bodies: false
macro_rules
!
foo
{
(
$a
:
ident
:
$b
:
ty
)
=>
{
$a
(
42
):
$b
;
};
(
$a
:
ident $b
:
ident $c
:
ident
)
=>
{
$a
=
$b
+
$c
;
};
}