Sign in
android
/
platform
/
external
/
rust
/
crates
/
anyhow
/
refs/heads/android14-qpr3-s15-release
/
.
/
tests
/
ui
/
chained-comparison.rs
blob: 4521b51c8ca216e795cbe0292bd9ae684ff813c8 [
file
] [
log
] [
blame
] [
edit
]
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
(())
}