Sign in
android
/
toolchain
/
rustc
/
5c0824a599f2f1f4dcb9c92edf09f6c1b555988d
/
.
/
vendor
/
anyhow-1.0.66
/
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
(())
}