Sign in
rust
/
rustfmt
/
refs/heads/subtree
/
.
/
tests
/
target
/
issue-4152.rs
blob: 80f9ff5e30437971f96a4bbb305af0f994eec689 [
file
] [
log
] [
blame
]
// rustfmt-hard_tabs: true
macro_rules
!
bit
{
(
$bool
:
expr
)
=>
{
if
$bool
{
1
;
1
}
else
{
0
;
0
}
};
}
macro_rules
!
add_one
{
(
$vec
:
expr
)
=>
{{
$vec
.
push
(
1
);
}};
}