kauma/vendor/anyhow/tests/ui/wrong-interpolation.rs
2024-10-23 10:21:09 +02:00

5 lines
84 B
Rust

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