oden/third-party/vendor/anyhow/tests/ui/must-use.rs
2024-03-08 11:03:01 -08:00

11 lines
177 B
Rust

#![deny(unused_must_use)]
use anyhow::anyhow;
fn main() -> anyhow::Result<()> {
if true {
// meant to write bail!
anyhow!("it failed");
}
Ok(())
}