summaryrefslogtreecommitdiffstats
path: root/vendor/anyhow/tests/ui/must-use.rs
blob: ea4e58f55ee43cd023b63c11749e9da7197c0140 (plain)
1
2
3
4
5
6
7
8
9
10
11
#![deny(unused_must_use)]

use anyhow::anyhow;

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