Sign in
fuchsia
/
third_party
/
rust
/
5a2fceefd312ec027bdeaa89ebefbe4c33d94de1
/
.
/
tests
/
ui
/
lint
/
lint-double-negations-macro.rs
blob: a6583271d5a2ab4989c0030d08ce54314fb32c85 [
file
]
//@ check-pass
macro_rules
!
neg
{
(
$e
:
expr
)
=>
{
-
$e
};
}
macro_rules
!
bad_macro
{
(
$e
:
expr
)
=>
{
--
$e
//~ WARN use of a double negation
};
}
fn
main
()
{
neg
!(-
1
);
bad_macro
!(
1
);
}