Sign in
rust
/
rustfmt
/
ec8a4d41f1f178a19d9e5217e91d17bb0be4674a
/
.
/
tests
/
target
/
configs
/
format_macro_matchers
/
false.rs
blob: 01ecac9879d69c22e93672cf62bae714d40ba3d0 [
file
] [
log
] [
blame
]
// rustfmt-format_macro_matchers: false
macro_rules
!
foo
{
(
$a
:
ident
:
$b
:
ty
)
=>
{
$a
(
42
):
$b
;
};
(
$a
:
ident $b
:
ident $c
:
ident
)
=>
{
$a
=
$b
+
$c
;
};
}