Sign in
android
/
toolchain
/
rustc
/
b1d328019a485dc2e58d5dc46556067c927ec9f2
/
.
/
vendor
/
anyhow-1.0.58
/
tests
/
ui
/
chained-comparison.rs
blob: 4521b51c8ca216e795cbe0292bd9ae684ff813c8 [
file
] [
log
] [
blame
]
use
anyhow
::{
ensure
,
Result
};
fn
main
()
->
Result
<()>
{
// `ensure!` must not partition this into `(false) == (false == true)`
// because Rust doesn't ordinarily allow this form of expression.
ensure
!(
false
==
false
==
true
);
Ok
(())
}