blob: 4521b51c8ca216e795cbe0292bd9ae684ff813c8 (
plain)
1
2
3
4
5
6
7
8
|
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(())
}
|