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

5 lines
84 B
Rust

use anyhow::{bail, Result};
fn main() -> Result<()> {
bail!("{} not found");
}